From 4e2e3ba83f949ca1fe300844d3b4fff888812e8c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Fri, 19 Jan 2024 00:23:35 +0000 Subject: [PATCH] Generate libsonnet source from libgenerator PR https://github.com/tf-libsonnet/libgenerator/pull/238 Signed-off-by: tflibsonnet-ci <120686569+tflibsonnet-ci@users.noreply.github.com> --- 5.x/_gen/data/eks_access_entry.libsonnet | 76 + 5.x/_gen/data/main.libsonnet | 1 + .../secretsmanager_random_password.libsonnet | 18 +- 5.x/_gen/data/secretsmanager_secret.libsonnet | 21 +- 5.x/_gen/main.libsonnet | 3 + 5.x/_gen/provider_aws.libsonnet | 6 +- 5.x/_gen/resources/backup_plan.libsonnet | 12 +- 5.x/_gen/resources/eks_access_entry.libsonnet | 124 + .../eks_access_policy_association.libsonnet | 130 + 5.x/_gen/resources/eks_cluster.libsonnet | 38 +- .../lakeformation_resource.libsonnet | 21 +- .../resources/lexv2models_intent.libsonnet | 10080 +++++++ .../secretsmanager_secret_rotation.libsonnet | 24 +- docs/5.x/README.md | 3 + docs/5.x/backup_plan.md | 2 + docs/5.x/data/eks_access_entry.md | 149 + docs/5.x/data/index.md | 1 + .../data/secretsmanager_random_password.md | 19 - docs/5.x/data/secretsmanager_secret.md | 19 + docs/5.x/eks_access_entry.md | 234 + docs/5.x/eks_access_policy_association.md | 263 + docs/5.x/eks_cluster.md | 67 + docs/5.x/lakeformation_resource.md | 19 + docs/5.x/lexv2models_intent.md | 24813 ++++++++++++++++ docs/5.x/provider.md | 2 + docs/5.x/secretsmanager_secret_rotation.md | 19 + 26 files changed, 36111 insertions(+), 53 deletions(-) create mode 100644 5.x/_gen/data/eks_access_entry.libsonnet create mode 100644 5.x/_gen/resources/eks_access_entry.libsonnet create mode 100644 5.x/_gen/resources/eks_access_policy_association.libsonnet create mode 100644 5.x/_gen/resources/lexv2models_intent.libsonnet create mode 100644 docs/5.x/data/eks_access_entry.md create mode 100644 docs/5.x/eks_access_entry.md create mode 100644 docs/5.x/eks_access_policy_association.md create mode 100644 docs/5.x/lexv2models_intent.md diff --git a/5.x/_gen/data/eks_access_entry.libsonnet b/5.x/_gen/data/eks_access_entry.libsonnet new file mode 100644 index 00000000..f39efa0e --- /dev/null +++ b/5.x/_gen/data/eks_access_entry.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='eks_access_entry', url='', help='`eks_access_entry` represents the `aws_eks_access_entry` 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.eks_access_entry.new` injects a new `data_aws_eks_access_entry` 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.eks_access_entry.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.eks_access_entry` using the reference:\n\n $._ref.data_aws_eks_access_entry.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_eks_access_entry.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 - `cluster_name` (`string`): Set the `cluster_name` field on the resulting data source block.\n - `principal_arn` (`string`): Set the `principal_arn` field on the resulting data source block.\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 - `tags_all` (`obj`): Set the `tags_all` field on the resulting data source block. When `null`, the `tags_all` 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, + cluster_name, + principal_arn, + tags=null, + tags_all=null, + _meta={} + ):: tf.withData( + type='aws_eks_access_entry', + label=dataSrcLabel, + attrs=self.newAttrs( + cluster_name=cluster_name, + principal_arn=principal_arn, + tags=tags, + tags_all=tags_all + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.data.eks_access_entry.newAttrs` constructs a new object with attributes and blocks configured for the `eks_access_entry`\nTerraform data source.\n\nUnlike [aws.data.eks_access_entry.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 - `cluster_name` (`string`): Set the `cluster_name` field on the resulting object.\n - `principal_arn` (`string`): Set the `principal_arn` 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\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 `eks_access_entry` data source into the root Terraform configuration.\n', args=[]), + newAttrs( + cluster_name, + principal_arn, + tags=null, + tags_all=null + ):: std.prune(a={ + cluster_name: cluster_name, + principal_arn: principal_arn, + tags: tags, + tags_all: tags_all, + }), + '#withClusterName':: d.fn(help='`aws.string.withClusterName` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the cluster_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 `cluster_name` field.\n', args=[]), + withClusterName(dataSrcLabel, value): { + data+: { + aws_eks_access_entry+: { + [dataSrcLabel]+: { + cluster_name: value, + }, + }, + }, + }, + '#withPrincipalArn':: d.fn(help='`aws.string.withPrincipalArn` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the principal_arn 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 `principal_arn` field.\n', args=[]), + withPrincipalArn(dataSrcLabel, value): { + data+: { + aws_eks_access_entry+: { + [dataSrcLabel]+: { + principal_arn: 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_eks_access_entry+: { + [dataSrcLabel]+: { + tags: value, + }, + }, + }, + }, + '#withTagsAll':: d.fn(help='`aws.obj.withTagsAll` constructs a mixin object that can be merged into the `obj`\nTerraform data source block to set or update the tags_all 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_all` field.\n', args=[]), + withTagsAll(dataSrcLabel, value): { + data+: { + aws_eks_access_entry+: { + [dataSrcLabel]+: { + tags_all: value, + }, + }, + }, + }, +} diff --git a/5.x/_gen/data/main.libsonnet b/5.x/_gen/data/main.libsonnet index d011e60b..91230412 100644 --- a/5.x/_gen/data/main.libsonnet +++ b/5.x/_gen/data/main.libsonnet @@ -197,6 +197,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); efs_mount_target: (import 'efs_mount_target.libsonnet'), eip: (import 'eip.libsonnet'), eips: (import 'eips.libsonnet'), + eks_access_entry: (import 'eks_access_entry.libsonnet'), eks_addon: (import 'eks_addon.libsonnet'), eks_addon_version: (import 'eks_addon_version.libsonnet'), eks_cluster: (import 'eks_cluster.libsonnet'), diff --git a/5.x/_gen/data/secretsmanager_random_password.libsonnet b/5.x/_gen/data/secretsmanager_random_password.libsonnet index 16ce8046..b8bff0c9 100644 --- a/5.x/_gen/data/secretsmanager_random_password.libsonnet +++ b/5.x/_gen/data/secretsmanager_random_password.libsonnet @@ -2,7 +2,7 @@ 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='secretsmanager_random_password', url='', help='`secretsmanager_random_password` represents the `aws_secretsmanager_random_password` 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.secretsmanager_random_password.new` injects a new `data_aws_secretsmanager_random_password` 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.secretsmanager_random_password.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.secretsmanager_random_password` using the reference:\n\n $._ref.data_aws_secretsmanager_random_password.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_secretsmanager_random_password.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 - `exclude_characters` (`string`): Set the `exclude_characters` field on the resulting data source block. When `null`, the `exclude_characters` field will be omitted from the resulting object.\n - `exclude_lowercase` (`bool`): Set the `exclude_lowercase` field on the resulting data source block. When `null`, the `exclude_lowercase` field will be omitted from the resulting object.\n - `exclude_numbers` (`bool`): Set the `exclude_numbers` field on the resulting data source block. When `null`, the `exclude_numbers` field will be omitted from the resulting object.\n - `exclude_punctuation` (`bool`): Set the `exclude_punctuation` field on the resulting data source block. When `null`, the `exclude_punctuation` field will be omitted from the resulting object.\n - `exclude_uppercase` (`bool`): Set the `exclude_uppercase` field on the resulting data source block. When `null`, the `exclude_uppercase` field will be omitted from the resulting object.\n - `include_space` (`bool`): Set the `include_space` field on the resulting data source block. When `null`, the `include_space` field will be omitted from the resulting object.\n - `password_length` (`number`): Set the `password_length` field on the resulting data source block. When `null`, the `password_length` field will be omitted from the resulting object.\n - `random_password` (`string`): Set the `random_password` field on the resulting data source block. When `null`, the `random_password` field will be omitted from the resulting object.\n - `require_each_included_type` (`bool`): Set the `require_each_included_type` field on the resulting data source block. When `null`, the `require_each_included_type` 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':: d.fn(help="\n`aws.data.secretsmanager_random_password.new` injects a new `data_aws_secretsmanager_random_password` 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.secretsmanager_random_password.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.secretsmanager_random_password` using the reference:\n\n $._ref.data_aws_secretsmanager_random_password.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_secretsmanager_random_password.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 - `exclude_characters` (`string`): Set the `exclude_characters` field on the resulting data source block. When `null`, the `exclude_characters` field will be omitted from the resulting object.\n - `exclude_lowercase` (`bool`): Set the `exclude_lowercase` field on the resulting data source block. When `null`, the `exclude_lowercase` field will be omitted from the resulting object.\n - `exclude_numbers` (`bool`): Set the `exclude_numbers` field on the resulting data source block. When `null`, the `exclude_numbers` field will be omitted from the resulting object.\n - `exclude_punctuation` (`bool`): Set the `exclude_punctuation` field on the resulting data source block. When `null`, the `exclude_punctuation` field will be omitted from the resulting object.\n - `exclude_uppercase` (`bool`): Set the `exclude_uppercase` field on the resulting data source block. When `null`, the `exclude_uppercase` field will be omitted from the resulting object.\n - `include_space` (`bool`): Set the `include_space` field on the resulting data source block. When `null`, the `include_space` field will be omitted from the resulting object.\n - `password_length` (`number`): Set the `password_length` field on the resulting data source block. When `null`, the `password_length` field will be omitted from the resulting object.\n - `require_each_included_type` (`bool`): Set the `require_each_included_type` field on the resulting data source block. When `null`, the `require_each_included_type` 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, exclude_characters=null, @@ -12,7 +12,6 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); exclude_uppercase=null, include_space=null, password_length=null, - random_password=null, require_each_included_type=null, _meta={} ):: tf.withData( @@ -26,12 +25,11 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); exclude_uppercase=exclude_uppercase, include_space=include_space, password_length=password_length, - random_password=random_password, require_each_included_type=require_each_included_type ), _meta=_meta ), - '#newAttrs':: d.fn(help='\n`aws.data.secretsmanager_random_password.newAttrs` constructs a new object with attributes and blocks configured for the `secretsmanager_random_password`\nTerraform data source.\n\nUnlike [aws.data.secretsmanager_random_password.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 - `exclude_characters` (`string`): Set the `exclude_characters` field on the resulting object. When `null`, the `exclude_characters` field will be omitted from the resulting object.\n - `exclude_lowercase` (`bool`): Set the `exclude_lowercase` field on the resulting object. When `null`, the `exclude_lowercase` field will be omitted from the resulting object.\n - `exclude_numbers` (`bool`): Set the `exclude_numbers` field on the resulting object. When `null`, the `exclude_numbers` field will be omitted from the resulting object.\n - `exclude_punctuation` (`bool`): Set the `exclude_punctuation` field on the resulting object. When `null`, the `exclude_punctuation` field will be omitted from the resulting object.\n - `exclude_uppercase` (`bool`): Set the `exclude_uppercase` field on the resulting object. When `null`, the `exclude_uppercase` field will be omitted from the resulting object.\n - `include_space` (`bool`): Set the `include_space` field on the resulting object. When `null`, the `include_space` field will be omitted from the resulting object.\n - `password_length` (`number`): Set the `password_length` field on the resulting object. When `null`, the `password_length` field will be omitted from the resulting object.\n - `random_password` (`string`): Set the `random_password` field on the resulting object. When `null`, the `random_password` field will be omitted from the resulting object.\n - `require_each_included_type` (`bool`): Set the `require_each_included_type` field on the resulting object. When `null`, the `require_each_included_type` 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 `secretsmanager_random_password` data source into the root Terraform configuration.\n', args=[]), + '#newAttrs':: d.fn(help='\n`aws.data.secretsmanager_random_password.newAttrs` constructs a new object with attributes and blocks configured for the `secretsmanager_random_password`\nTerraform data source.\n\nUnlike [aws.data.secretsmanager_random_password.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 - `exclude_characters` (`string`): Set the `exclude_characters` field on the resulting object. When `null`, the `exclude_characters` field will be omitted from the resulting object.\n - `exclude_lowercase` (`bool`): Set the `exclude_lowercase` field on the resulting object. When `null`, the `exclude_lowercase` field will be omitted from the resulting object.\n - `exclude_numbers` (`bool`): Set the `exclude_numbers` field on the resulting object. When `null`, the `exclude_numbers` field will be omitted from the resulting object.\n - `exclude_punctuation` (`bool`): Set the `exclude_punctuation` field on the resulting object. When `null`, the `exclude_punctuation` field will be omitted from the resulting object.\n - `exclude_uppercase` (`bool`): Set the `exclude_uppercase` field on the resulting object. When `null`, the `exclude_uppercase` field will be omitted from the resulting object.\n - `include_space` (`bool`): Set the `include_space` field on the resulting object. When `null`, the `include_space` field will be omitted from the resulting object.\n - `password_length` (`number`): Set the `password_length` field on the resulting object. When `null`, the `password_length` field will be omitted from the resulting object.\n - `require_each_included_type` (`bool`): Set the `require_each_included_type` field on the resulting object. When `null`, the `require_each_included_type` 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 `secretsmanager_random_password` data source into the root Terraform configuration.\n', args=[]), newAttrs( exclude_characters=null, exclude_lowercase=null, @@ -40,7 +38,6 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); exclude_uppercase=null, include_space=null, password_length=null, - random_password=null, require_each_included_type=null ):: std.prune(a={ exclude_characters: exclude_characters, @@ -50,7 +47,6 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); exclude_uppercase: exclude_uppercase, include_space: include_space, password_length: password_length, - random_password: random_password, require_each_included_type: require_each_included_type, }), '#withExcludeCharacters':: d.fn(help='`aws.string.withExcludeCharacters` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the exclude_characters 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 `exclude_characters` field.\n', args=[]), @@ -123,16 +119,6 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }, }, }, - '#withRandomPassword':: d.fn(help='`aws.string.withRandomPassword` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the random_password 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 `random_password` field.\n', args=[]), - withRandomPassword(dataSrcLabel, value): { - data+: { - aws_secretsmanager_random_password+: { - [dataSrcLabel]+: { - random_password: value, - }, - }, - }, - }, '#withRequireEachIncludedType':: d.fn(help='`aws.bool.withRequireEachIncludedType` constructs a mixin object that can be merged into the `bool`\nTerraform data source block to set or update the require_each_included_type field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`bool`): The value to set for the `require_each_included_type` field.\n', args=[]), withRequireEachIncludedType(dataSrcLabel, value): { data+: { diff --git a/5.x/_gen/data/secretsmanager_secret.libsonnet b/5.x/_gen/data/secretsmanager_secret.libsonnet index 0d520608..1c064fd9 100644 --- a/5.x/_gen/data/secretsmanager_secret.libsonnet +++ b/5.x/_gen/data/secretsmanager_secret.libsonnet @@ -2,25 +2,28 @@ 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='secretsmanager_secret', url='', help='`secretsmanager_secret` represents the `aws_secretsmanager_secret` 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.secretsmanager_secret.new` injects a new `data_aws_secretsmanager_secret` 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.secretsmanager_secret.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.secretsmanager_secret` using the reference:\n\n $._ref.data_aws_secretsmanager_secret.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_secretsmanager_secret.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 - `arn` (`string`): Set the `arn` field on the resulting data source block. When `null`, the `arn` field will be omitted from the resulting object.\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\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]), + '#new':: d.fn(help="\n`aws.data.secretsmanager_secret.new` injects a new `data_aws_secretsmanager_secret` 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.secretsmanager_secret.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.secretsmanager_secret` using the reference:\n\n $._ref.data_aws_secretsmanager_secret.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_secretsmanager_secret.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 - `arn` (`string`): Set the `arn` field on the resulting data source block. When `null`, the `arn` field will be omitted from the resulting object.\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\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]), new( dataSrcLabel, arn=null, name=null, + tags=null, _meta={} ):: tf.withData( type='aws_secretsmanager_secret', label=dataSrcLabel, - attrs=self.newAttrs(arn=arn, name=name), + attrs=self.newAttrs(arn=arn, name=name, tags=tags), _meta=_meta ), - '#newAttrs':: d.fn(help='\n`aws.data.secretsmanager_secret.newAttrs` constructs a new object with attributes and blocks configured for the `secretsmanager_secret`\nTerraform data source.\n\nUnlike [aws.data.secretsmanager_secret.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 - `arn` (`string`): Set the `arn` field on the resulting object. When `null`, the `arn` 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 can be used with [tf.withData](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withdata) to construct a new `secretsmanager_secret` data source into the root Terraform configuration.\n', args=[]), + '#newAttrs':: d.fn(help='\n`aws.data.secretsmanager_secret.newAttrs` constructs a new object with attributes and blocks configured for the `secretsmanager_secret`\nTerraform data source.\n\nUnlike [aws.data.secretsmanager_secret.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 - `arn` (`string`): Set the `arn` field on the resulting object. When `null`, the `arn` 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 - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` 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 `secretsmanager_secret` data source into the root Terraform configuration.\n', args=[]), newAttrs( arn=null, - name=null + name=null, + tags=null ):: std.prune(a={ arn: arn, name: name, + tags: tags, }), '#withArn':: d.fn(help='`aws.string.withArn` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the arn 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 `arn` field.\n', args=[]), withArn(dataSrcLabel, value): { @@ -42,4 +45,14 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }, }, }, + '#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_secretsmanager_secret+: { + [dataSrcLabel]+: { + tags: value, + }, + }, + }, + }, } diff --git a/5.x/_gen/main.libsonnet b/5.x/_gen/main.libsonnet index 730de9f4..6912b21c 100644 --- a/5.x/_gen/main.libsonnet +++ b/5.x/_gen/main.libsonnet @@ -472,6 +472,8 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); egress_only_internet_gateway: (import 'resources/egress_only_internet_gateway.libsonnet'), eip: (import 'resources/eip.libsonnet'), eip_association: (import 'resources/eip_association.libsonnet'), + eks_access_entry: (import 'resources/eks_access_entry.libsonnet'), + eks_access_policy_association: (import 'resources/eks_access_policy_association.libsonnet'), eks_addon: (import 'resources/eks_addon.libsonnet'), eks_cluster: (import 'resources/eks_cluster.libsonnet'), eks_fargate_profile: (import 'resources/eks_fargate_profile.libsonnet'), @@ -719,6 +721,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); lexv2models_bot: (import 'resources/lexv2models_bot.libsonnet'), lexv2models_bot_locale: (import 'resources/lexv2models_bot_locale.libsonnet'), lexv2models_bot_version: (import 'resources/lexv2models_bot_version.libsonnet'), + lexv2models_intent: (import 'resources/lexv2models_intent.libsonnet'), licensemanager_association: (import 'resources/licensemanager_association.libsonnet'), licensemanager_grant: (import 'resources/licensemanager_grant.libsonnet'), licensemanager_grant_accepter: (import 'resources/licensemanager_grant_accepter.libsonnet'), diff --git a/5.x/_gen/provider_aws.libsonnet b/5.x/_gen/provider_aws.libsonnet index 79b58b19..d08eb058 100644 --- a/5.x/_gen/provider_aws.libsonnet +++ b/5.x/_gen/provider_aws.libsonnet @@ -200,7 +200,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }), }, endpoints:: { - '#new':: d.fn(help='\n`aws.endpoints.new` constructs a new object with attributes and blocks configured for the `endpoints`\nTerraform sub block.\n\n\n\n**Args**:\n - `accessanalyzer` (`string`): Use this to override the default service endpoint URL When `null`, the `accessanalyzer` field will be omitted from the resulting object.\n - `account` (`string`): Use this to override the default service endpoint URL When `null`, the `account` field will be omitted from the resulting object.\n - `acm` (`string`): Use this to override the default service endpoint URL When `null`, the `acm` field will be omitted from the resulting object.\n - `acmpca` (`string`): Use this to override the default service endpoint URL When `null`, the `acmpca` field will be omitted from the resulting object.\n - `amg` (`string`): Use this to override the default service endpoint URL When `null`, the `amg` field will be omitted from the resulting object.\n - `amp` (`string`): Use this to override the default service endpoint URL When `null`, the `amp` field will be omitted from the resulting object.\n - `amplify` (`string`): Use this to override the default service endpoint URL When `null`, the `amplify` field will be omitted from the resulting object.\n - `apigateway` (`string`): Use this to override the default service endpoint URL When `null`, the `apigateway` field will be omitted from the resulting object.\n - `apigatewayv2` (`string`): Use this to override the default service endpoint URL When `null`, the `apigatewayv2` field will be omitted from the resulting object.\n - `appautoscaling` (`string`): Use this to override the default service endpoint URL When `null`, the `appautoscaling` field will be omitted from the resulting object.\n - `appconfig` (`string`): Use this to override the default service endpoint URL When `null`, the `appconfig` field will be omitted from the resulting object.\n - `appfabric` (`string`): Use this to override the default service endpoint URL When `null`, the `appfabric` field will be omitted from the resulting object.\n - `appflow` (`string`): Use this to override the default service endpoint URL When `null`, the `appflow` field will be omitted from the resulting object.\n - `appintegrations` (`string`): Use this to override the default service endpoint URL When `null`, the `appintegrations` field will be omitted from the resulting object.\n - `appintegrationsservice` (`string`): Use this to override the default service endpoint URL When `null`, the `appintegrationsservice` field will be omitted from the resulting object.\n - `applicationautoscaling` (`string`): Use this to override the default service endpoint URL When `null`, the `applicationautoscaling` field will be omitted from the resulting object.\n - `applicationinsights` (`string`): Use this to override the default service endpoint URL When `null`, the `applicationinsights` field will be omitted from the resulting object.\n - `appmesh` (`string`): Use this to override the default service endpoint URL When `null`, the `appmesh` field will be omitted from the resulting object.\n - `appregistry` (`string`): Use this to override the default service endpoint URL When `null`, the `appregistry` field will be omitted from the resulting object.\n - `apprunner` (`string`): Use this to override the default service endpoint URL When `null`, the `apprunner` field will be omitted from the resulting object.\n - `appstream` (`string`): Use this to override the default service endpoint URL When `null`, the `appstream` field will be omitted from the resulting object.\n - `appsync` (`string`): Use this to override the default service endpoint URL When `null`, the `appsync` field will be omitted from the resulting object.\n - `athena` (`string`): Use this to override the default service endpoint URL When `null`, the `athena` field will be omitted from the resulting object.\n - `auditmanager` (`string`): Use this to override the default service endpoint URL When `null`, the `auditmanager` field will be omitted from the resulting object.\n - `autoscaling` (`string`): Use this to override the default service endpoint URL When `null`, the `autoscaling` field will be omitted from the resulting object.\n - `autoscalingplans` (`string`): Use this to override the default service endpoint URL When `null`, the `autoscalingplans` field will be omitted from the resulting object.\n - `backup` (`string`): Use this to override the default service endpoint URL When `null`, the `backup` field will be omitted from the resulting object.\n - `batch` (`string`): Use this to override the default service endpoint URL When `null`, the `batch` field will be omitted from the resulting object.\n - `beanstalk` (`string`): Use this to override the default service endpoint URL When `null`, the `beanstalk` field will be omitted from the resulting object.\n - `bedrock` (`string`): Use this to override the default service endpoint URL When `null`, the `bedrock` field will be omitted from the resulting object.\n - `budgets` (`string`): Use this to override the default service endpoint URL When `null`, the `budgets` field will be omitted from the resulting object.\n - `ce` (`string`): Use this to override the default service endpoint URL When `null`, the `ce` field will be omitted from the resulting object.\n - `chime` (`string`): Use this to override the default service endpoint URL When `null`, the `chime` field will be omitted from the resulting object.\n - `chimesdkmediapipelines` (`string`): Use this to override the default service endpoint URL When `null`, the `chimesdkmediapipelines` field will be omitted from the resulting object.\n - `chimesdkvoice` (`string`): Use this to override the default service endpoint URL When `null`, the `chimesdkvoice` field will be omitted from the resulting object.\n - `cleanrooms` (`string`): Use this to override the default service endpoint URL When `null`, the `cleanrooms` field will be omitted from the resulting object.\n - `cloud9` (`string`): Use this to override the default service endpoint URL When `null`, the `cloud9` field will be omitted from the resulting object.\n - `cloudcontrol` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudcontrol` field will be omitted from the resulting object.\n - `cloudcontrolapi` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudcontrolapi` field will be omitted from the resulting object.\n - `cloudformation` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudformation` field will be omitted from the resulting object.\n - `cloudfront` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudfront` field will be omitted from the resulting object.\n - `cloudhsm` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudhsm` field will be omitted from the resulting object.\n - `cloudhsmv2` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudhsmv2` field will be omitted from the resulting object.\n - `cloudsearch` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudsearch` field will be omitted from the resulting object.\n - `cloudtrail` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudtrail` field will be omitted from the resulting object.\n - `cloudwatch` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatch` field will be omitted from the resulting object.\n - `cloudwatchevents` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchevents` field will be omitted from the resulting object.\n - `cloudwatchevidently` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchevidently` field will be omitted from the resulting object.\n - `cloudwatchlog` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchlog` field will be omitted from the resulting object.\n - `cloudwatchlogs` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchlogs` field will be omitted from the resulting object.\n - `cloudwatchobservabilityaccessmanager` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchobservabilityaccessmanager` field will be omitted from the resulting object.\n - `cloudwatchrum` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchrum` field will be omitted from the resulting object.\n - `codeartifact` (`string`): Use this to override the default service endpoint URL When `null`, the `codeartifact` field will be omitted from the resulting object.\n - `codebuild` (`string`): Use this to override the default service endpoint URL When `null`, the `codebuild` field will be omitted from the resulting object.\n - `codecatalyst` (`string`): Use this to override the default service endpoint URL When `null`, the `codecatalyst` field will be omitted from the resulting object.\n - `codecommit` (`string`): Use this to override the default service endpoint URL When `null`, the `codecommit` field will be omitted from the resulting object.\n - `codedeploy` (`string`): Use this to override the default service endpoint URL When `null`, the `codedeploy` field will be omitted from the resulting object.\n - `codeguruprofiler` (`string`): Use this to override the default service endpoint URL When `null`, the `codeguruprofiler` field will be omitted from the resulting object.\n - `codegurureviewer` (`string`): Use this to override the default service endpoint URL When `null`, the `codegurureviewer` field will be omitted from the resulting object.\n - `codepipeline` (`string`): Use this to override the default service endpoint URL When `null`, the `codepipeline` field will be omitted from the resulting object.\n - `codestarconnections` (`string`): Use this to override the default service endpoint URL When `null`, the `codestarconnections` field will be omitted from the resulting object.\n - `codestarnotifications` (`string`): Use this to override the default service endpoint URL When `null`, the `codestarnotifications` field will be omitted from the resulting object.\n - `cognitoidentity` (`string`): Use this to override the default service endpoint URL When `null`, the `cognitoidentity` field will be omitted from the resulting object.\n - `cognitoidentityprovider` (`string`): Use this to override the default service endpoint URL When `null`, the `cognitoidentityprovider` field will be omitted from the resulting object.\n - `cognitoidp` (`string`): Use this to override the default service endpoint URL When `null`, the `cognitoidp` field will be omitted from the resulting object.\n - `comprehend` (`string`): Use this to override the default service endpoint URL When `null`, the `comprehend` field will be omitted from the resulting object.\n - `computeoptimizer` (`string`): Use this to override the default service endpoint URL When `null`, the `computeoptimizer` field will be omitted from the resulting object.\n - `config` (`string`): Use this to override the default service endpoint URL When `null`, the `config` field will be omitted from the resulting object.\n - `configservice` (`string`): Use this to override the default service endpoint URL When `null`, the `configservice` field will be omitted from the resulting object.\n - `connect` (`string`): Use this to override the default service endpoint URL When `null`, the `connect` field will be omitted from the resulting object.\n - `connectcases` (`string`): Use this to override the default service endpoint URL When `null`, the `connectcases` field will be omitted from the resulting object.\n - `controltower` (`string`): Use this to override the default service endpoint URL When `null`, the `controltower` field will be omitted from the resulting object.\n - `costandusagereportservice` (`string`): Use this to override the default service endpoint URL When `null`, the `costandusagereportservice` field will be omitted from the resulting object.\n - `costexplorer` (`string`): Use this to override the default service endpoint URL When `null`, the `costexplorer` field will be omitted from the resulting object.\n - `cur` (`string`): Use this to override the default service endpoint URL When `null`, the `cur` field will be omitted from the resulting object.\n - `customerprofiles` (`string`): Use this to override the default service endpoint URL When `null`, the `customerprofiles` field will be omitted from the resulting object.\n - `databasemigration` (`string`): Use this to override the default service endpoint URL When `null`, the `databasemigration` field will be omitted from the resulting object.\n - `databasemigrationservice` (`string`): Use this to override the default service endpoint URL When `null`, the `databasemigrationservice` field will be omitted from the resulting object.\n - `dataexchange` (`string`): Use this to override the default service endpoint URL When `null`, the `dataexchange` field will be omitted from the resulting object.\n - `datapipeline` (`string`): Use this to override the default service endpoint URL When `null`, the `datapipeline` field will be omitted from the resulting object.\n - `datasync` (`string`): Use this to override the default service endpoint URL When `null`, the `datasync` field will be omitted from the resulting object.\n - `dax` (`string`): Use this to override the default service endpoint URL When `null`, the `dax` field will be omitted from the resulting object.\n - `deploy` (`string`): Use this to override the default service endpoint URL When `null`, the `deploy` field will be omitted from the resulting object.\n - `detective` (`string`): Use this to override the default service endpoint URL When `null`, the `detective` field will be omitted from the resulting object.\n - `devicefarm` (`string`): Use this to override the default service endpoint URL When `null`, the `devicefarm` field will be omitted from the resulting object.\n - `directconnect` (`string`): Use this to override the default service endpoint URL When `null`, the `directconnect` field will be omitted from the resulting object.\n - `directoryservice` (`string`): Use this to override the default service endpoint URL When `null`, the `directoryservice` field will be omitted from the resulting object.\n - `dlm` (`string`): Use this to override the default service endpoint URL When `null`, the `dlm` field will be omitted from the resulting object.\n - `dms` (`string`): Use this to override the default service endpoint URL When `null`, the `dms` field will be omitted from the resulting object.\n - `docdb` (`string`): Use this to override the default service endpoint URL When `null`, the `docdb` field will be omitted from the resulting object.\n - `docdbelastic` (`string`): Use this to override the default service endpoint URL When `null`, the `docdbelastic` field will be omitted from the resulting object.\n - `ds` (`string`): Use this to override the default service endpoint URL When `null`, the `ds` field will be omitted from the resulting object.\n - `dynamodb` (`string`): Use this to override the default service endpoint URL When `null`, the `dynamodb` field will be omitted from the resulting object.\n - `ec2` (`string`): Use this to override the default service endpoint URL When `null`, the `ec2` field will be omitted from the resulting object.\n - `ecr` (`string`): Use this to override the default service endpoint URL When `null`, the `ecr` field will be omitted from the resulting object.\n - `ecrpublic` (`string`): Use this to override the default service endpoint URL When `null`, the `ecrpublic` field will be omitted from the resulting object.\n - `ecs` (`string`): Use this to override the default service endpoint URL When `null`, the `ecs` field will be omitted from the resulting object.\n - `efs` (`string`): Use this to override the default service endpoint URL When `null`, the `efs` field will be omitted from the resulting object.\n - `eks` (`string`): Use this to override the default service endpoint URL When `null`, the `eks` field will be omitted from the resulting object.\n - `elasticache` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticache` field will be omitted from the resulting object.\n - `elasticbeanstalk` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticbeanstalk` field will be omitted from the resulting object.\n - `elasticloadbalancing` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticloadbalancing` field will be omitted from the resulting object.\n - `elasticloadbalancingv2` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticloadbalancingv2` field will be omitted from the resulting object.\n - `elasticsearch` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticsearch` field will be omitted from the resulting object.\n - `elasticsearchservice` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticsearchservice` field will be omitted from the resulting object.\n - `elastictranscoder` (`string`): Use this to override the default service endpoint URL When `null`, the `elastictranscoder` field will be omitted from the resulting object.\n - `elb` (`string`): Use this to override the default service endpoint URL When `null`, the `elb` field will be omitted from the resulting object.\n - `elbv2` (`string`): Use this to override the default service endpoint URL When `null`, the `elbv2` field will be omitted from the resulting object.\n - `emr` (`string`): Use this to override the default service endpoint URL When `null`, the `emr` field will be omitted from the resulting object.\n - `emrcontainers` (`string`): Use this to override the default service endpoint URL When `null`, the `emrcontainers` field will be omitted from the resulting object.\n - `emrserverless` (`string`): Use this to override the default service endpoint URL When `null`, the `emrserverless` field will be omitted from the resulting object.\n - `es` (`string`): Use this to override the default service endpoint URL When `null`, the `es` field will be omitted from the resulting object.\n - `eventbridge` (`string`): Use this to override the default service endpoint URL When `null`, the `eventbridge` field will be omitted from the resulting object.\n - `events` (`string`): Use this to override the default service endpoint URL When `null`, the `events` field will be omitted from the resulting object.\n - `evidently` (`string`): Use this to override the default service endpoint URL When `null`, the `evidently` field will be omitted from the resulting object.\n - `finspace` (`string`): Use this to override the default service endpoint URL When `null`, the `finspace` field will be omitted from the resulting object.\n - `firehose` (`string`): Use this to override the default service endpoint URL When `null`, the `firehose` field will be omitted from the resulting object.\n - `fis` (`string`): Use this to override the default service endpoint URL When `null`, the `fis` field will be omitted from the resulting object.\n - `fms` (`string`): Use this to override the default service endpoint URL When `null`, the `fms` field will be omitted from the resulting object.\n - `fsx` (`string`): Use this to override the default service endpoint URL When `null`, the `fsx` field will be omitted from the resulting object.\n - `gamelift` (`string`): Use this to override the default service endpoint URL When `null`, the `gamelift` field will be omitted from the resulting object.\n - `glacier` (`string`): Use this to override the default service endpoint URL When `null`, the `glacier` field will be omitted from the resulting object.\n - `globalaccelerator` (`string`): Use this to override the default service endpoint URL When `null`, the `globalaccelerator` field will be omitted from the resulting object.\n - `glue` (`string`): Use this to override the default service endpoint URL When `null`, the `glue` field will be omitted from the resulting object.\n - `grafana` (`string`): Use this to override the default service endpoint URL When `null`, the `grafana` field will be omitted from the resulting object.\n - `greengrass` (`string`): Use this to override the default service endpoint URL When `null`, the `greengrass` field will be omitted from the resulting object.\n - `groundstation` (`string`): Use this to override the default service endpoint URL When `null`, the `groundstation` field will be omitted from the resulting object.\n - `guardduty` (`string`): Use this to override the default service endpoint URL When `null`, the `guardduty` field will be omitted from the resulting object.\n - `healthlake` (`string`): Use this to override the default service endpoint URL When `null`, the `healthlake` field will be omitted from the resulting object.\n - `iam` (`string`): Use this to override the default service endpoint URL When `null`, the `iam` field will be omitted from the resulting object.\n - `identitystore` (`string`): Use this to override the default service endpoint URL When `null`, the `identitystore` field will be omitted from the resulting object.\n - `imagebuilder` (`string`): Use this to override the default service endpoint URL When `null`, the `imagebuilder` field will be omitted from the resulting object.\n - `inspector` (`string`): Use this to override the default service endpoint URL When `null`, the `inspector` field will be omitted from the resulting object.\n - `inspector2` (`string`): Use this to override the default service endpoint URL When `null`, the `inspector2` field will be omitted from the resulting object.\n - `inspectorv2` (`string`): Use this to override the default service endpoint URL When `null`, the `inspectorv2` field will be omitted from the resulting object.\n - `internetmonitor` (`string`): Use this to override the default service endpoint URL When `null`, the `internetmonitor` field will be omitted from the resulting object.\n - `iot` (`string`): Use this to override the default service endpoint URL When `null`, the `iot` field will be omitted from the resulting object.\n - `iotanalytics` (`string`): Use this to override the default service endpoint URL When `null`, the `iotanalytics` field will be omitted from the resulting object.\n - `iotevents` (`string`): Use this to override the default service endpoint URL When `null`, the `iotevents` field will be omitted from the resulting object.\n - `ivs` (`string`): Use this to override the default service endpoint URL When `null`, the `ivs` field will be omitted from the resulting object.\n - `ivschat` (`string`): Use this to override the default service endpoint URL When `null`, the `ivschat` field will be omitted from the resulting object.\n - `kafka` (`string`): Use this to override the default service endpoint URL When `null`, the `kafka` field will be omitted from the resulting object.\n - `kafkaconnect` (`string`): Use this to override the default service endpoint URL When `null`, the `kafkaconnect` field will be omitted from the resulting object.\n - `kendra` (`string`): Use this to override the default service endpoint URL When `null`, the `kendra` field will be omitted from the resulting object.\n - `keyspaces` (`string`): Use this to override the default service endpoint URL When `null`, the `keyspaces` field will be omitted from the resulting object.\n - `kinesis` (`string`): Use this to override the default service endpoint URL When `null`, the `kinesis` field will be omitted from the resulting object.\n - `kinesisanalytics` (`string`): Use this to override the default service endpoint URL When `null`, the `kinesisanalytics` field will be omitted from the resulting object.\n - `kinesisanalyticsv2` (`string`): Use this to override the default service endpoint URL When `null`, the `kinesisanalyticsv2` field will be omitted from the resulting object.\n - `kinesisvideo` (`string`): Use this to override the default service endpoint URL When `null`, the `kinesisvideo` field will be omitted from the resulting object.\n - `kms` (`string`): Use this to override the default service endpoint URL When `null`, the `kms` field will be omitted from the resulting object.\n - `lakeformation` (`string`): Use this to override the default service endpoint URL When `null`, the `lakeformation` field will be omitted from the resulting object.\n - `lambda` (`string`): Use this to override the default service endpoint URL When `null`, the `lambda` field will be omitted from the resulting object.\n - `launchwizard` (`string`): Use this to override the default service endpoint URL When `null`, the `launchwizard` field will be omitted from the resulting object.\n - `lex` (`string`): Use this to override the default service endpoint URL When `null`, the `lex` field will be omitted from the resulting object.\n - `lexmodelbuilding` (`string`): Use this to override the default service endpoint URL When `null`, the `lexmodelbuilding` field will be omitted from the resulting object.\n - `lexmodelbuildingservice` (`string`): Use this to override the default service endpoint URL When `null`, the `lexmodelbuildingservice` field will be omitted from the resulting object.\n - `lexmodels` (`string`): Use this to override the default service endpoint URL When `null`, the `lexmodels` field will be omitted from the resulting object.\n - `lexmodelsv2` (`string`): Use this to override the default service endpoint URL When `null`, the `lexmodelsv2` field will be omitted from the resulting object.\n - `lexv2models` (`string`): Use this to override the default service endpoint URL When `null`, the `lexv2models` field will be omitted from the resulting object.\n - `licensemanager` (`string`): Use this to override the default service endpoint URL When `null`, the `licensemanager` field will be omitted from the resulting object.\n - `lightsail` (`string`): Use this to override the default service endpoint URL When `null`, the `lightsail` field will be omitted from the resulting object.\n - `location` (`string`): Use this to override the default service endpoint URL When `null`, the `location` field will be omitted from the resulting object.\n - `locationservice` (`string`): Use this to override the default service endpoint URL When `null`, the `locationservice` field will be omitted from the resulting object.\n - `logs` (`string`): Use this to override the default service endpoint URL When `null`, the `logs` field will be omitted from the resulting object.\n - `lookoutmetrics` (`string`): Use this to override the default service endpoint URL When `null`, the `lookoutmetrics` field will be omitted from the resulting object.\n - `macie2` (`string`): Use this to override the default service endpoint URL When `null`, the `macie2` field will be omitted from the resulting object.\n - `managedgrafana` (`string`): Use this to override the default service endpoint URL When `null`, the `managedgrafana` field will be omitted from the resulting object.\n - `mediaconnect` (`string`): Use this to override the default service endpoint URL When `null`, the `mediaconnect` field will be omitted from the resulting object.\n - `mediaconvert` (`string`): Use this to override the default service endpoint URL When `null`, the `mediaconvert` field will be omitted from the resulting object.\n - `medialive` (`string`): Use this to override the default service endpoint URL When `null`, the `medialive` field will be omitted from the resulting object.\n - `mediapackage` (`string`): Use this to override the default service endpoint URL When `null`, the `mediapackage` field will be omitted from the resulting object.\n - `mediapackagev2` (`string`): Use this to override the default service endpoint URL When `null`, the `mediapackagev2` field will be omitted from the resulting object.\n - `mediastore` (`string`): Use this to override the default service endpoint URL When `null`, the `mediastore` field will be omitted from the resulting object.\n - `memorydb` (`string`): Use this to override the default service endpoint URL When `null`, the `memorydb` field will be omitted from the resulting object.\n - `mq` (`string`): Use this to override the default service endpoint URL When `null`, the `mq` field will be omitted from the resulting object.\n - `msk` (`string`): Use this to override the default service endpoint URL When `null`, the `msk` field will be omitted from the resulting object.\n - `mwaa` (`string`): Use this to override the default service endpoint URL When `null`, the `mwaa` field will be omitted from the resulting object.\n - `neptune` (`string`): Use this to override the default service endpoint URL When `null`, the `neptune` field will be omitted from the resulting object.\n - `networkfirewall` (`string`): Use this to override the default service endpoint URL When `null`, the `networkfirewall` field will be omitted from the resulting object.\n - `networkmanager` (`string`): Use this to override the default service endpoint URL When `null`, the `networkmanager` field will be omitted from the resulting object.\n - `oam` (`string`): Use this to override the default service endpoint URL When `null`, the `oam` field will be omitted from the resulting object.\n - `opensearch` (`string`): Use this to override the default service endpoint URL When `null`, the `opensearch` field will be omitted from the resulting object.\n - `opensearchingestion` (`string`): Use this to override the default service endpoint URL When `null`, the `opensearchingestion` field will be omitted from the resulting object.\n - `opensearchserverless` (`string`): Use this to override the default service endpoint URL When `null`, the `opensearchserverless` field will be omitted from the resulting object.\n - `opensearchservice` (`string`): Use this to override the default service endpoint URL When `null`, the `opensearchservice` field will be omitted from the resulting object.\n - `opsworks` (`string`): Use this to override the default service endpoint URL When `null`, the `opsworks` field will be omitted from the resulting object.\n - `organizations` (`string`): Use this to override the default service endpoint URL When `null`, the `organizations` field will be omitted from the resulting object.\n - `osis` (`string`): Use this to override the default service endpoint URL When `null`, the `osis` field will be omitted from the resulting object.\n - `outposts` (`string`): Use this to override the default service endpoint URL When `null`, the `outposts` field will be omitted from the resulting object.\n - `pcaconnectorad` (`string`): Use this to override the default service endpoint URL When `null`, the `pcaconnectorad` field will be omitted from the resulting object.\n - `pinpoint` (`string`): Use this to override the default service endpoint URL When `null`, the `pinpoint` field will be omitted from the resulting object.\n - `pipes` (`string`): Use this to override the default service endpoint URL When `null`, the `pipes` field will be omitted from the resulting object.\n - `polly` (`string`): Use this to override the default service endpoint URL When `null`, the `polly` field will be omitted from the resulting object.\n - `pricing` (`string`): Use this to override the default service endpoint URL When `null`, the `pricing` field will be omitted from the resulting object.\n - `prometheus` (`string`): Use this to override the default service endpoint URL When `null`, the `prometheus` field will be omitted from the resulting object.\n - `prometheusservice` (`string`): Use this to override the default service endpoint URL When `null`, the `prometheusservice` field will be omitted from the resulting object.\n - `qbusiness` (`string`): Use this to override the default service endpoint URL When `null`, the `qbusiness` field will be omitted from the resulting object.\n - `qldb` (`string`): Use this to override the default service endpoint URL When `null`, the `qldb` field will be omitted from the resulting object.\n - `quicksight` (`string`): Use this to override the default service endpoint URL When `null`, the `quicksight` field will be omitted from the resulting object.\n - `ram` (`string`): Use this to override the default service endpoint URL When `null`, the `ram` field will be omitted from the resulting object.\n - `rbin` (`string`): Use this to override the default service endpoint URL When `null`, the `rbin` field will be omitted from the resulting object.\n - `rds` (`string`): Use this to override the default service endpoint URL When `null`, the `rds` field will be omitted from the resulting object.\n - `recyclebin` (`string`): Use this to override the default service endpoint URL When `null`, the `recyclebin` field will be omitted from the resulting object.\n - `redshift` (`string`): Use this to override the default service endpoint URL When `null`, the `redshift` field will be omitted from the resulting object.\n - `redshiftdata` (`string`): Use this to override the default service endpoint URL When `null`, the `redshiftdata` field will be omitted from the resulting object.\n - `redshiftdataapiservice` (`string`): Use this to override the default service endpoint URL When `null`, the `redshiftdataapiservice` field will be omitted from the resulting object.\n - `redshiftserverless` (`string`): Use this to override the default service endpoint URL When `null`, the `redshiftserverless` field will be omitted from the resulting object.\n - `resourceexplorer2` (`string`): Use this to override the default service endpoint URL When `null`, the `resourceexplorer2` field will be omitted from the resulting object.\n - `resourcegroups` (`string`): Use this to override the default service endpoint URL When `null`, the `resourcegroups` field will be omitted from the resulting object.\n - `resourcegroupstagging` (`string`): Use this to override the default service endpoint URL When `null`, the `resourcegroupstagging` field will be omitted from the resulting object.\n - `resourcegroupstaggingapi` (`string`): Use this to override the default service endpoint URL When `null`, the `resourcegroupstaggingapi` field will be omitted from the resulting object.\n - `rolesanywhere` (`string`): Use this to override the default service endpoint URL When `null`, the `rolesanywhere` field will be omitted from the resulting object.\n - `route53` (`string`): Use this to override the default service endpoint URL When `null`, the `route53` field will be omitted from the resulting object.\n - `route53domains` (`string`): Use this to override the default service endpoint URL When `null`, the `route53domains` field will be omitted from the resulting object.\n - `route53recoverycontrolconfig` (`string`): Use this to override the default service endpoint URL When `null`, the `route53recoverycontrolconfig` field will be omitted from the resulting object.\n - `route53recoveryreadiness` (`string`): Use this to override the default service endpoint URL When `null`, the `route53recoveryreadiness` field will be omitted from the resulting object.\n - `route53resolver` (`string`): Use this to override the default service endpoint URL When `null`, the `route53resolver` field will be omitted from the resulting object.\n - `rum` (`string`): Use this to override the default service endpoint URL When `null`, the `rum` field will be omitted from the resulting object.\n - `s3` (`string`): Use this to override the default service endpoint URL When `null`, the `s3` field will be omitted from the resulting object.\n - `s3api` (`string`): Use this to override the default service endpoint URL When `null`, the `s3api` field will be omitted from the resulting object.\n - `s3control` (`string`): Use this to override the default service endpoint URL When `null`, the `s3control` field will be omitted from the resulting object.\n - `s3outposts` (`string`): Use this to override the default service endpoint URL When `null`, the `s3outposts` field will be omitted from the resulting object.\n - `sagemaker` (`string`): Use this to override the default service endpoint URL When `null`, the `sagemaker` field will be omitted from the resulting object.\n - `scheduler` (`string`): Use this to override the default service endpoint URL When `null`, the `scheduler` field will be omitted from the resulting object.\n - `schemas` (`string`): Use this to override the default service endpoint URL When `null`, the `schemas` field will be omitted from the resulting object.\n - `sdb` (`string`): Use this to override the default service endpoint URL When `null`, the `sdb` field will be omitted from the resulting object.\n - `secretsmanager` (`string`): Use this to override the default service endpoint URL When `null`, the `secretsmanager` field will be omitted from the resulting object.\n - `securityhub` (`string`): Use this to override the default service endpoint URL When `null`, the `securityhub` field will be omitted from the resulting object.\n - `securitylake` (`string`): Use this to override the default service endpoint URL When `null`, the `securitylake` field will be omitted from the resulting object.\n - `serverlessapplicationrepository` (`string`): Use this to override the default service endpoint URL When `null`, the `serverlessapplicationrepository` field will be omitted from the resulting object.\n - `serverlessapprepo` (`string`): Use this to override the default service endpoint URL When `null`, the `serverlessapprepo` field will be omitted from the resulting object.\n - `serverlessrepo` (`string`): Use this to override the default service endpoint URL When `null`, the `serverlessrepo` field will be omitted from the resulting object.\n - `servicecatalog` (`string`): Use this to override the default service endpoint URL When `null`, the `servicecatalog` field will be omitted from the resulting object.\n - `servicecatalogappregistry` (`string`): Use this to override the default service endpoint URL When `null`, the `servicecatalogappregistry` field will be omitted from the resulting object.\n - `servicediscovery` (`string`): Use this to override the default service endpoint URL When `null`, the `servicediscovery` field will be omitted from the resulting object.\n - `servicequotas` (`string`): Use this to override the default service endpoint URL When `null`, the `servicequotas` field will be omitted from the resulting object.\n - `ses` (`string`): Use this to override the default service endpoint URL When `null`, the `ses` field will be omitted from the resulting object.\n - `sesv2` (`string`): Use this to override the default service endpoint URL When `null`, the `sesv2` field will be omitted from the resulting object.\n - `sfn` (`string`): Use this to override the default service endpoint URL When `null`, the `sfn` field will be omitted from the resulting object.\n - `shield` (`string`): Use this to override the default service endpoint URL When `null`, the `shield` field will be omitted from the resulting object.\n - `signer` (`string`): Use this to override the default service endpoint URL When `null`, the `signer` field will be omitted from the resulting object.\n - `simpledb` (`string`): Use this to override the default service endpoint URL When `null`, the `simpledb` field will be omitted from the resulting object.\n - `sns` (`string`): Use this to override the default service endpoint URL When `null`, the `sns` field will be omitted from the resulting object.\n - `sqs` (`string`): Use this to override the default service endpoint URL When `null`, the `sqs` field will be omitted from the resulting object.\n - `ssm` (`string`): Use this to override the default service endpoint URL When `null`, the `ssm` field will be omitted from the resulting object.\n - `ssmcontacts` (`string`): Use this to override the default service endpoint URL When `null`, the `ssmcontacts` field will be omitted from the resulting object.\n - `ssmincidents` (`string`): Use this to override the default service endpoint URL When `null`, the `ssmincidents` field will be omitted from the resulting object.\n - `ssmsap` (`string`): Use this to override the default service endpoint URL When `null`, the `ssmsap` field will be omitted from the resulting object.\n - `sso` (`string`): Use this to override the default service endpoint URL When `null`, the `sso` field will be omitted from the resulting object.\n - `ssoadmin` (`string`): Use this to override the default service endpoint URL When `null`, the `ssoadmin` field will be omitted from the resulting object.\n - `stepfunctions` (`string`): Use this to override the default service endpoint URL When `null`, the `stepfunctions` field will be omitted from the resulting object.\n - `storagegateway` (`string`): Use this to override the default service endpoint URL When `null`, the `storagegateway` field will be omitted from the resulting object.\n - `sts` (`string`): Use this to override the default service endpoint URL When `null`, the `sts` field will be omitted from the resulting object.\n - `swf` (`string`): Use this to override the default service endpoint URL When `null`, the `swf` field will be omitted from the resulting object.\n - `synthetics` (`string`): Use this to override the default service endpoint URL When `null`, the `synthetics` field will be omitted from the resulting object.\n - `timestreamwrite` (`string`): Use this to override the default service endpoint URL When `null`, the `timestreamwrite` field will be omitted from the resulting object.\n - `transcribe` (`string`): Use this to override the default service endpoint URL When `null`, the `transcribe` field will be omitted from the resulting object.\n - `transcribeservice` (`string`): Use this to override the default service endpoint URL When `null`, the `transcribeservice` field will be omitted from the resulting object.\n - `transfer` (`string`): Use this to override the default service endpoint URL When `null`, the `transfer` field will be omitted from the resulting object.\n - `verifiedpermissions` (`string`): Use this to override the default service endpoint URL When `null`, the `verifiedpermissions` field will be omitted from the resulting object.\n - `vpclattice` (`string`): Use this to override the default service endpoint URL When `null`, the `vpclattice` field will be omitted from the resulting object.\n - `waf` (`string`): Use this to override the default service endpoint URL When `null`, the `waf` field will be omitted from the resulting object.\n - `wafregional` (`string`): Use this to override the default service endpoint URL When `null`, the `wafregional` field will be omitted from the resulting object.\n - `wafv2` (`string`): Use this to override the default service endpoint URL When `null`, the `wafv2` field will be omitted from the resulting object.\n - `wellarchitected` (`string`): Use this to override the default service endpoint URL When `null`, the `wellarchitected` field will be omitted from the resulting object.\n - `worklink` (`string`): Use this to override the default service endpoint URL When `null`, the `worklink` field will be omitted from the resulting object.\n - `workspaces` (`string`): Use this to override the default service endpoint URL When `null`, the `workspaces` field will be omitted from the resulting object.\n - `xray` (`string`): Use this to override the default service endpoint URL When `null`, the `xray` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `endpoints` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.endpoints.new` constructs a new object with attributes and blocks configured for the `endpoints`\nTerraform sub block.\n\n\n\n**Args**:\n - `accessanalyzer` (`string`): Use this to override the default service endpoint URL When `null`, the `accessanalyzer` field will be omitted from the resulting object.\n - `account` (`string`): Use this to override the default service endpoint URL When `null`, the `account` field will be omitted from the resulting object.\n - `acm` (`string`): Use this to override the default service endpoint URL When `null`, the `acm` field will be omitted from the resulting object.\n - `acmpca` (`string`): Use this to override the default service endpoint URL When `null`, the `acmpca` field will be omitted from the resulting object.\n - `amg` (`string`): Use this to override the default service endpoint URL When `null`, the `amg` field will be omitted from the resulting object.\n - `amp` (`string`): Use this to override the default service endpoint URL When `null`, the `amp` field will be omitted from the resulting object.\n - `amplify` (`string`): Use this to override the default service endpoint URL When `null`, the `amplify` field will be omitted from the resulting object.\n - `apigateway` (`string`): Use this to override the default service endpoint URL When `null`, the `apigateway` field will be omitted from the resulting object.\n - `apigatewayv2` (`string`): Use this to override the default service endpoint URL When `null`, the `apigatewayv2` field will be omitted from the resulting object.\n - `appautoscaling` (`string`): Use this to override the default service endpoint URL When `null`, the `appautoscaling` field will be omitted from the resulting object.\n - `appconfig` (`string`): Use this to override the default service endpoint URL When `null`, the `appconfig` field will be omitted from the resulting object.\n - `appfabric` (`string`): Use this to override the default service endpoint URL When `null`, the `appfabric` field will be omitted from the resulting object.\n - `appflow` (`string`): Use this to override the default service endpoint URL When `null`, the `appflow` field will be omitted from the resulting object.\n - `appintegrations` (`string`): Use this to override the default service endpoint URL When `null`, the `appintegrations` field will be omitted from the resulting object.\n - `appintegrationsservice` (`string`): Use this to override the default service endpoint URL When `null`, the `appintegrationsservice` field will be omitted from the resulting object.\n - `applicationautoscaling` (`string`): Use this to override the default service endpoint URL When `null`, the `applicationautoscaling` field will be omitted from the resulting object.\n - `applicationinsights` (`string`): Use this to override the default service endpoint URL When `null`, the `applicationinsights` field will be omitted from the resulting object.\n - `appmesh` (`string`): Use this to override the default service endpoint URL When `null`, the `appmesh` field will be omitted from the resulting object.\n - `appregistry` (`string`): Use this to override the default service endpoint URL When `null`, the `appregistry` field will be omitted from the resulting object.\n - `apprunner` (`string`): Use this to override the default service endpoint URL When `null`, the `apprunner` field will be omitted from the resulting object.\n - `appstream` (`string`): Use this to override the default service endpoint URL When `null`, the `appstream` field will be omitted from the resulting object.\n - `appsync` (`string`): Use this to override the default service endpoint URL When `null`, the `appsync` field will be omitted from the resulting object.\n - `athena` (`string`): Use this to override the default service endpoint URL When `null`, the `athena` field will be omitted from the resulting object.\n - `auditmanager` (`string`): Use this to override the default service endpoint URL When `null`, the `auditmanager` field will be omitted from the resulting object.\n - `autoscaling` (`string`): Use this to override the default service endpoint URL When `null`, the `autoscaling` field will be omitted from the resulting object.\n - `autoscalingplans` (`string`): Use this to override the default service endpoint URL When `null`, the `autoscalingplans` field will be omitted from the resulting object.\n - `backup` (`string`): Use this to override the default service endpoint URL When `null`, the `backup` field will be omitted from the resulting object.\n - `batch` (`string`): Use this to override the default service endpoint URL When `null`, the `batch` field will be omitted from the resulting object.\n - `beanstalk` (`string`): Use this to override the default service endpoint URL When `null`, the `beanstalk` field will be omitted from the resulting object.\n - `bedrock` (`string`): Use this to override the default service endpoint URL When `null`, the `bedrock` field will be omitted from the resulting object.\n - `budgets` (`string`): Use this to override the default service endpoint URL When `null`, the `budgets` field will be omitted from the resulting object.\n - `ce` (`string`): Use this to override the default service endpoint URL When `null`, the `ce` field will be omitted from the resulting object.\n - `chime` (`string`): Use this to override the default service endpoint URL When `null`, the `chime` field will be omitted from the resulting object.\n - `chimesdkmediapipelines` (`string`): Use this to override the default service endpoint URL When `null`, the `chimesdkmediapipelines` field will be omitted from the resulting object.\n - `chimesdkvoice` (`string`): Use this to override the default service endpoint URL When `null`, the `chimesdkvoice` field will be omitted from the resulting object.\n - `cleanrooms` (`string`): Use this to override the default service endpoint URL When `null`, the `cleanrooms` field will be omitted from the resulting object.\n - `cloud9` (`string`): Use this to override the default service endpoint URL When `null`, the `cloud9` field will be omitted from the resulting object.\n - `cloudcontrol` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudcontrol` field will be omitted from the resulting object.\n - `cloudcontrolapi` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudcontrolapi` field will be omitted from the resulting object.\n - `cloudformation` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudformation` field will be omitted from the resulting object.\n - `cloudfront` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudfront` field will be omitted from the resulting object.\n - `cloudhsm` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudhsm` field will be omitted from the resulting object.\n - `cloudhsmv2` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudhsmv2` field will be omitted from the resulting object.\n - `cloudsearch` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudsearch` field will be omitted from the resulting object.\n - `cloudtrail` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudtrail` field will be omitted from the resulting object.\n - `cloudwatch` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatch` field will be omitted from the resulting object.\n - `cloudwatchevents` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchevents` field will be omitted from the resulting object.\n - `cloudwatchevidently` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchevidently` field will be omitted from the resulting object.\n - `cloudwatchlog` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchlog` field will be omitted from the resulting object.\n - `cloudwatchlogs` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchlogs` field will be omitted from the resulting object.\n - `cloudwatchobservabilityaccessmanager` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchobservabilityaccessmanager` field will be omitted from the resulting object.\n - `cloudwatchrum` (`string`): Use this to override the default service endpoint URL When `null`, the `cloudwatchrum` field will be omitted from the resulting object.\n - `codeartifact` (`string`): Use this to override the default service endpoint URL When `null`, the `codeartifact` field will be omitted from the resulting object.\n - `codebuild` (`string`): Use this to override the default service endpoint URL When `null`, the `codebuild` field will be omitted from the resulting object.\n - `codecatalyst` (`string`): Use this to override the default service endpoint URL When `null`, the `codecatalyst` field will be omitted from the resulting object.\n - `codecommit` (`string`): Use this to override the default service endpoint URL When `null`, the `codecommit` field will be omitted from the resulting object.\n - `codedeploy` (`string`): Use this to override the default service endpoint URL When `null`, the `codedeploy` field will be omitted from the resulting object.\n - `codeguruprofiler` (`string`): Use this to override the default service endpoint URL When `null`, the `codeguruprofiler` field will be omitted from the resulting object.\n - `codegurureviewer` (`string`): Use this to override the default service endpoint URL When `null`, the `codegurureviewer` field will be omitted from the resulting object.\n - `codepipeline` (`string`): Use this to override the default service endpoint URL When `null`, the `codepipeline` field will be omitted from the resulting object.\n - `codestarconnections` (`string`): Use this to override the default service endpoint URL When `null`, the `codestarconnections` field will be omitted from the resulting object.\n - `codestarnotifications` (`string`): Use this to override the default service endpoint URL When `null`, the `codestarnotifications` field will be omitted from the resulting object.\n - `cognitoidentity` (`string`): Use this to override the default service endpoint URL When `null`, the `cognitoidentity` field will be omitted from the resulting object.\n - `cognitoidentityprovider` (`string`): Use this to override the default service endpoint URL When `null`, the `cognitoidentityprovider` field will be omitted from the resulting object.\n - `cognitoidp` (`string`): Use this to override the default service endpoint URL When `null`, the `cognitoidp` field will be omitted from the resulting object.\n - `comprehend` (`string`): Use this to override the default service endpoint URL When `null`, the `comprehend` field will be omitted from the resulting object.\n - `computeoptimizer` (`string`): Use this to override the default service endpoint URL When `null`, the `computeoptimizer` field will be omitted from the resulting object.\n - `config` (`string`): Use this to override the default service endpoint URL When `null`, the `config` field will be omitted from the resulting object.\n - `configservice` (`string`): Use this to override the default service endpoint URL When `null`, the `configservice` field will be omitted from the resulting object.\n - `connect` (`string`): Use this to override the default service endpoint URL When `null`, the `connect` field will be omitted from the resulting object.\n - `connectcases` (`string`): Use this to override the default service endpoint URL When `null`, the `connectcases` field will be omitted from the resulting object.\n - `controltower` (`string`): Use this to override the default service endpoint URL When `null`, the `controltower` field will be omitted from the resulting object.\n - `costandusagereportservice` (`string`): Use this to override the default service endpoint URL When `null`, the `costandusagereportservice` field will be omitted from the resulting object.\n - `costexplorer` (`string`): Use this to override the default service endpoint URL When `null`, the `costexplorer` field will be omitted from the resulting object.\n - `cur` (`string`): Use this to override the default service endpoint URL When `null`, the `cur` field will be omitted from the resulting object.\n - `customerprofiles` (`string`): Use this to override the default service endpoint URL When `null`, the `customerprofiles` field will be omitted from the resulting object.\n - `databasemigration` (`string`): Use this to override the default service endpoint URL When `null`, the `databasemigration` field will be omitted from the resulting object.\n - `databasemigrationservice` (`string`): Use this to override the default service endpoint URL When `null`, the `databasemigrationservice` field will be omitted from the resulting object.\n - `dataexchange` (`string`): Use this to override the default service endpoint URL When `null`, the `dataexchange` field will be omitted from the resulting object.\n - `datapipeline` (`string`): Use this to override the default service endpoint URL When `null`, the `datapipeline` field will be omitted from the resulting object.\n - `datasync` (`string`): Use this to override the default service endpoint URL When `null`, the `datasync` field will be omitted from the resulting object.\n - `dax` (`string`): Use this to override the default service endpoint URL When `null`, the `dax` field will be omitted from the resulting object.\n - `deploy` (`string`): Use this to override the default service endpoint URL When `null`, the `deploy` field will be omitted from the resulting object.\n - `detective` (`string`): Use this to override the default service endpoint URL When `null`, the `detective` field will be omitted from the resulting object.\n - `devicefarm` (`string`): Use this to override the default service endpoint URL When `null`, the `devicefarm` field will be omitted from the resulting object.\n - `directconnect` (`string`): Use this to override the default service endpoint URL When `null`, the `directconnect` field will be omitted from the resulting object.\n - `directoryservice` (`string`): Use this to override the default service endpoint URL When `null`, the `directoryservice` field will be omitted from the resulting object.\n - `dlm` (`string`): Use this to override the default service endpoint URL When `null`, the `dlm` field will be omitted from the resulting object.\n - `dms` (`string`): Use this to override the default service endpoint URL When `null`, the `dms` field will be omitted from the resulting object.\n - `docdb` (`string`): Use this to override the default service endpoint URL When `null`, the `docdb` field will be omitted from the resulting object.\n - `docdbelastic` (`string`): Use this to override the default service endpoint URL When `null`, the `docdbelastic` field will be omitted from the resulting object.\n - `ds` (`string`): Use this to override the default service endpoint URL When `null`, the `ds` field will be omitted from the resulting object.\n - `dynamodb` (`string`): Use this to override the default service endpoint URL When `null`, the `dynamodb` field will be omitted from the resulting object.\n - `ec2` (`string`): Use this to override the default service endpoint URL When `null`, the `ec2` field will be omitted from the resulting object.\n - `ecr` (`string`): Use this to override the default service endpoint URL When `null`, the `ecr` field will be omitted from the resulting object.\n - `ecrpublic` (`string`): Use this to override the default service endpoint URL When `null`, the `ecrpublic` field will be omitted from the resulting object.\n - `ecs` (`string`): Use this to override the default service endpoint URL When `null`, the `ecs` field will be omitted from the resulting object.\n - `efs` (`string`): Use this to override the default service endpoint URL When `null`, the `efs` field will be omitted from the resulting object.\n - `eks` (`string`): Use this to override the default service endpoint URL When `null`, the `eks` field will be omitted from the resulting object.\n - `elasticache` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticache` field will be omitted from the resulting object.\n - `elasticbeanstalk` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticbeanstalk` field will be omitted from the resulting object.\n - `elasticloadbalancing` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticloadbalancing` field will be omitted from the resulting object.\n - `elasticloadbalancingv2` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticloadbalancingv2` field will be omitted from the resulting object.\n - `elasticsearch` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticsearch` field will be omitted from the resulting object.\n - `elasticsearchservice` (`string`): Use this to override the default service endpoint URL When `null`, the `elasticsearchservice` field will be omitted from the resulting object.\n - `elastictranscoder` (`string`): Use this to override the default service endpoint URL When `null`, the `elastictranscoder` field will be omitted from the resulting object.\n - `elb` (`string`): Use this to override the default service endpoint URL When `null`, the `elb` field will be omitted from the resulting object.\n - `elbv2` (`string`): Use this to override the default service endpoint URL When `null`, the `elbv2` field will be omitted from the resulting object.\n - `emr` (`string`): Use this to override the default service endpoint URL When `null`, the `emr` field will be omitted from the resulting object.\n - `emrcontainers` (`string`): Use this to override the default service endpoint URL When `null`, the `emrcontainers` field will be omitted from the resulting object.\n - `emrserverless` (`string`): Use this to override the default service endpoint URL When `null`, the `emrserverless` field will be omitted from the resulting object.\n - `es` (`string`): Use this to override the default service endpoint URL When `null`, the `es` field will be omitted from the resulting object.\n - `eventbridge` (`string`): Use this to override the default service endpoint URL When `null`, the `eventbridge` field will be omitted from the resulting object.\n - `events` (`string`): Use this to override the default service endpoint URL When `null`, the `events` field will be omitted from the resulting object.\n - `evidently` (`string`): Use this to override the default service endpoint URL When `null`, the `evidently` field will be omitted from the resulting object.\n - `finspace` (`string`): Use this to override the default service endpoint URL When `null`, the `finspace` field will be omitted from the resulting object.\n - `firehose` (`string`): Use this to override the default service endpoint URL When `null`, the `firehose` field will be omitted from the resulting object.\n - `fis` (`string`): Use this to override the default service endpoint URL When `null`, the `fis` field will be omitted from the resulting object.\n - `fms` (`string`): Use this to override the default service endpoint URL When `null`, the `fms` field will be omitted from the resulting object.\n - `fsx` (`string`): Use this to override the default service endpoint URL When `null`, the `fsx` field will be omitted from the resulting object.\n - `gamelift` (`string`): Use this to override the default service endpoint URL When `null`, the `gamelift` field will be omitted from the resulting object.\n - `glacier` (`string`): Use this to override the default service endpoint URL When `null`, the `glacier` field will be omitted from the resulting object.\n - `globalaccelerator` (`string`): Use this to override the default service endpoint URL When `null`, the `globalaccelerator` field will be omitted from the resulting object.\n - `glue` (`string`): Use this to override the default service endpoint URL When `null`, the `glue` field will be omitted from the resulting object.\n - `grafana` (`string`): Use this to override the default service endpoint URL When `null`, the `grafana` field will be omitted from the resulting object.\n - `greengrass` (`string`): Use this to override the default service endpoint URL When `null`, the `greengrass` field will be omitted from the resulting object.\n - `groundstation` (`string`): Use this to override the default service endpoint URL When `null`, the `groundstation` field will be omitted from the resulting object.\n - `guardduty` (`string`): Use this to override the default service endpoint URL When `null`, the `guardduty` field will be omitted from the resulting object.\n - `healthlake` (`string`): Use this to override the default service endpoint URL When `null`, the `healthlake` field will be omitted from the resulting object.\n - `iam` (`string`): Use this to override the default service endpoint URL When `null`, the `iam` field will be omitted from the resulting object.\n - `identitystore` (`string`): Use this to override the default service endpoint URL When `null`, the `identitystore` field will be omitted from the resulting object.\n - `imagebuilder` (`string`): Use this to override the default service endpoint URL When `null`, the `imagebuilder` field will be omitted from the resulting object.\n - `inspector` (`string`): Use this to override the default service endpoint URL When `null`, the `inspector` field will be omitted from the resulting object.\n - `inspector2` (`string`): Use this to override the default service endpoint URL When `null`, the `inspector2` field will be omitted from the resulting object.\n - `inspectorv2` (`string`): Use this to override the default service endpoint URL When `null`, the `inspectorv2` field will be omitted from the resulting object.\n - `internetmonitor` (`string`): Use this to override the default service endpoint URL When `null`, the `internetmonitor` field will be omitted from the resulting object.\n - `iot` (`string`): Use this to override the default service endpoint URL When `null`, the `iot` field will be omitted from the resulting object.\n - `iotanalytics` (`string`): Use this to override the default service endpoint URL When `null`, the `iotanalytics` field will be omitted from the resulting object.\n - `iotevents` (`string`): Use this to override the default service endpoint URL When `null`, the `iotevents` field will be omitted from the resulting object.\n - `ivs` (`string`): Use this to override the default service endpoint URL When `null`, the `ivs` field will be omitted from the resulting object.\n - `ivschat` (`string`): Use this to override the default service endpoint URL When `null`, the `ivschat` field will be omitted from the resulting object.\n - `kafka` (`string`): Use this to override the default service endpoint URL When `null`, the `kafka` field will be omitted from the resulting object.\n - `kafkaconnect` (`string`): Use this to override the default service endpoint URL When `null`, the `kafkaconnect` field will be omitted from the resulting object.\n - `kendra` (`string`): Use this to override the default service endpoint URL When `null`, the `kendra` field will be omitted from the resulting object.\n - `keyspaces` (`string`): Use this to override the default service endpoint URL When `null`, the `keyspaces` field will be omitted from the resulting object.\n - `kinesis` (`string`): Use this to override the default service endpoint URL When `null`, the `kinesis` field will be omitted from the resulting object.\n - `kinesisanalytics` (`string`): Use this to override the default service endpoint URL When `null`, the `kinesisanalytics` field will be omitted from the resulting object.\n - `kinesisanalyticsv2` (`string`): Use this to override the default service endpoint URL When `null`, the `kinesisanalyticsv2` field will be omitted from the resulting object.\n - `kinesisvideo` (`string`): Use this to override the default service endpoint URL When `null`, the `kinesisvideo` field will be omitted from the resulting object.\n - `kms` (`string`): Use this to override the default service endpoint URL When `null`, the `kms` field will be omitted from the resulting object.\n - `lakeformation` (`string`): Use this to override the default service endpoint URL When `null`, the `lakeformation` field will be omitted from the resulting object.\n - `lambda` (`string`): Use this to override the default service endpoint URL When `null`, the `lambda` field will be omitted from the resulting object.\n - `launchwizard` (`string`): Use this to override the default service endpoint URL When `null`, the `launchwizard` field will be omitted from the resulting object.\n - `lex` (`string`): Use this to override the default service endpoint URL When `null`, the `lex` field will be omitted from the resulting object.\n - `lexmodelbuilding` (`string`): Use this to override the default service endpoint URL When `null`, the `lexmodelbuilding` field will be omitted from the resulting object.\n - `lexmodelbuildingservice` (`string`): Use this to override the default service endpoint URL When `null`, the `lexmodelbuildingservice` field will be omitted from the resulting object.\n - `lexmodels` (`string`): Use this to override the default service endpoint URL When `null`, the `lexmodels` field will be omitted from the resulting object.\n - `lexmodelsv2` (`string`): Use this to override the default service endpoint URL When `null`, the `lexmodelsv2` field will be omitted from the resulting object.\n - `lexv2models` (`string`): Use this to override the default service endpoint URL When `null`, the `lexv2models` field will be omitted from the resulting object.\n - `licensemanager` (`string`): Use this to override the default service endpoint URL When `null`, the `licensemanager` field will be omitted from the resulting object.\n - `lightsail` (`string`): Use this to override the default service endpoint URL When `null`, the `lightsail` field will be omitted from the resulting object.\n - `location` (`string`): Use this to override the default service endpoint URL When `null`, the `location` field will be omitted from the resulting object.\n - `locationservice` (`string`): Use this to override the default service endpoint URL When `null`, the `locationservice` field will be omitted from the resulting object.\n - `logs` (`string`): Use this to override the default service endpoint URL When `null`, the `logs` field will be omitted from the resulting object.\n - `lookoutmetrics` (`string`): Use this to override the default service endpoint URL When `null`, the `lookoutmetrics` field will be omitted from the resulting object.\n - `m2` (`string`): Use this to override the default service endpoint URL When `null`, the `m2` field will be omitted from the resulting object.\n - `macie2` (`string`): Use this to override the default service endpoint URL When `null`, the `macie2` field will be omitted from the resulting object.\n - `managedgrafana` (`string`): Use this to override the default service endpoint URL When `null`, the `managedgrafana` field will be omitted from the resulting object.\n - `mediaconnect` (`string`): Use this to override the default service endpoint URL When `null`, the `mediaconnect` field will be omitted from the resulting object.\n - `mediaconvert` (`string`): Use this to override the default service endpoint URL When `null`, the `mediaconvert` field will be omitted from the resulting object.\n - `medialive` (`string`): Use this to override the default service endpoint URL When `null`, the `medialive` field will be omitted from the resulting object.\n - `mediapackage` (`string`): Use this to override the default service endpoint URL When `null`, the `mediapackage` field will be omitted from the resulting object.\n - `mediapackagev2` (`string`): Use this to override the default service endpoint URL When `null`, the `mediapackagev2` field will be omitted from the resulting object.\n - `mediastore` (`string`): Use this to override the default service endpoint URL When `null`, the `mediastore` field will be omitted from the resulting object.\n - `memorydb` (`string`): Use this to override the default service endpoint URL When `null`, the `memorydb` field will be omitted from the resulting object.\n - `mq` (`string`): Use this to override the default service endpoint URL When `null`, the `mq` field will be omitted from the resulting object.\n - `msk` (`string`): Use this to override the default service endpoint URL When `null`, the `msk` field will be omitted from the resulting object.\n - `mwaa` (`string`): Use this to override the default service endpoint URL When `null`, the `mwaa` field will be omitted from the resulting object.\n - `neptune` (`string`): Use this to override the default service endpoint URL When `null`, the `neptune` field will be omitted from the resulting object.\n - `networkfirewall` (`string`): Use this to override the default service endpoint URL When `null`, the `networkfirewall` field will be omitted from the resulting object.\n - `networkmanager` (`string`): Use this to override the default service endpoint URL When `null`, the `networkmanager` field will be omitted from the resulting object.\n - `oam` (`string`): Use this to override the default service endpoint URL When `null`, the `oam` field will be omitted from the resulting object.\n - `opensearch` (`string`): Use this to override the default service endpoint URL When `null`, the `opensearch` field will be omitted from the resulting object.\n - `opensearchingestion` (`string`): Use this to override the default service endpoint URL When `null`, the `opensearchingestion` field will be omitted from the resulting object.\n - `opensearchserverless` (`string`): Use this to override the default service endpoint URL When `null`, the `opensearchserverless` field will be omitted from the resulting object.\n - `opensearchservice` (`string`): Use this to override the default service endpoint URL When `null`, the `opensearchservice` field will be omitted from the resulting object.\n - `opsworks` (`string`): Use this to override the default service endpoint URL When `null`, the `opsworks` field will be omitted from the resulting object.\n - `organizations` (`string`): Use this to override the default service endpoint URL When `null`, the `organizations` field will be omitted from the resulting object.\n - `osis` (`string`): Use this to override the default service endpoint URL When `null`, the `osis` field will be omitted from the resulting object.\n - `outposts` (`string`): Use this to override the default service endpoint URL When `null`, the `outposts` field will be omitted from the resulting object.\n - `pcaconnectorad` (`string`): Use this to override the default service endpoint URL When `null`, the `pcaconnectorad` field will be omitted from the resulting object.\n - `pinpoint` (`string`): Use this to override the default service endpoint URL When `null`, the `pinpoint` field will be omitted from the resulting object.\n - `pipes` (`string`): Use this to override the default service endpoint URL When `null`, the `pipes` field will be omitted from the resulting object.\n - `polly` (`string`): Use this to override the default service endpoint URL When `null`, the `polly` field will be omitted from the resulting object.\n - `pricing` (`string`): Use this to override the default service endpoint URL When `null`, the `pricing` field will be omitted from the resulting object.\n - `prometheus` (`string`): Use this to override the default service endpoint URL When `null`, the `prometheus` field will be omitted from the resulting object.\n - `prometheusservice` (`string`): Use this to override the default service endpoint URL When `null`, the `prometheusservice` field will be omitted from the resulting object.\n - `qbusiness` (`string`): Use this to override the default service endpoint URL When `null`, the `qbusiness` field will be omitted from the resulting object.\n - `qldb` (`string`): Use this to override the default service endpoint URL When `null`, the `qldb` field will be omitted from the resulting object.\n - `quicksight` (`string`): Use this to override the default service endpoint URL When `null`, the `quicksight` field will be omitted from the resulting object.\n - `ram` (`string`): Use this to override the default service endpoint URL When `null`, the `ram` field will be omitted from the resulting object.\n - `rbin` (`string`): Use this to override the default service endpoint URL When `null`, the `rbin` field will be omitted from the resulting object.\n - `rds` (`string`): Use this to override the default service endpoint URL When `null`, the `rds` field will be omitted from the resulting object.\n - `recyclebin` (`string`): Use this to override the default service endpoint URL When `null`, the `recyclebin` field will be omitted from the resulting object.\n - `redshift` (`string`): Use this to override the default service endpoint URL When `null`, the `redshift` field will be omitted from the resulting object.\n - `redshiftdata` (`string`): Use this to override the default service endpoint URL When `null`, the `redshiftdata` field will be omitted from the resulting object.\n - `redshiftdataapiservice` (`string`): Use this to override the default service endpoint URL When `null`, the `redshiftdataapiservice` field will be omitted from the resulting object.\n - `redshiftserverless` (`string`): Use this to override the default service endpoint URL When `null`, the `redshiftserverless` field will be omitted from the resulting object.\n - `rekognition` (`string`): Use this to override the default service endpoint URL When `null`, the `rekognition` field will be omitted from the resulting object.\n - `resourceexplorer2` (`string`): Use this to override the default service endpoint URL When `null`, the `resourceexplorer2` field will be omitted from the resulting object.\n - `resourcegroups` (`string`): Use this to override the default service endpoint URL When `null`, the `resourcegroups` field will be omitted from the resulting object.\n - `resourcegroupstagging` (`string`): Use this to override the default service endpoint URL When `null`, the `resourcegroupstagging` field will be omitted from the resulting object.\n - `resourcegroupstaggingapi` (`string`): Use this to override the default service endpoint URL When `null`, the `resourcegroupstaggingapi` field will be omitted from the resulting object.\n - `rolesanywhere` (`string`): Use this to override the default service endpoint URL When `null`, the `rolesanywhere` field will be omitted from the resulting object.\n - `route53` (`string`): Use this to override the default service endpoint URL When `null`, the `route53` field will be omitted from the resulting object.\n - `route53domains` (`string`): Use this to override the default service endpoint URL When `null`, the `route53domains` field will be omitted from the resulting object.\n - `route53recoverycontrolconfig` (`string`): Use this to override the default service endpoint URL When `null`, the `route53recoverycontrolconfig` field will be omitted from the resulting object.\n - `route53recoveryreadiness` (`string`): Use this to override the default service endpoint URL When `null`, the `route53recoveryreadiness` field will be omitted from the resulting object.\n - `route53resolver` (`string`): Use this to override the default service endpoint URL When `null`, the `route53resolver` field will be omitted from the resulting object.\n - `rum` (`string`): Use this to override the default service endpoint URL When `null`, the `rum` field will be omitted from the resulting object.\n - `s3` (`string`): Use this to override the default service endpoint URL When `null`, the `s3` field will be omitted from the resulting object.\n - `s3api` (`string`): Use this to override the default service endpoint URL When `null`, the `s3api` field will be omitted from the resulting object.\n - `s3control` (`string`): Use this to override the default service endpoint URL When `null`, the `s3control` field will be omitted from the resulting object.\n - `s3outposts` (`string`): Use this to override the default service endpoint URL When `null`, the `s3outposts` field will be omitted from the resulting object.\n - `sagemaker` (`string`): Use this to override the default service endpoint URL When `null`, the `sagemaker` field will be omitted from the resulting object.\n - `scheduler` (`string`): Use this to override the default service endpoint URL When `null`, the `scheduler` field will be omitted from the resulting object.\n - `schemas` (`string`): Use this to override the default service endpoint URL When `null`, the `schemas` field will be omitted from the resulting object.\n - `sdb` (`string`): Use this to override the default service endpoint URL When `null`, the `sdb` field will be omitted from the resulting object.\n - `secretsmanager` (`string`): Use this to override the default service endpoint URL When `null`, the `secretsmanager` field will be omitted from the resulting object.\n - `securityhub` (`string`): Use this to override the default service endpoint URL When `null`, the `securityhub` field will be omitted from the resulting object.\n - `securitylake` (`string`): Use this to override the default service endpoint URL When `null`, the `securitylake` field will be omitted from the resulting object.\n - `serverlessapplicationrepository` (`string`): Use this to override the default service endpoint URL When `null`, the `serverlessapplicationrepository` field will be omitted from the resulting object.\n - `serverlessapprepo` (`string`): Use this to override the default service endpoint URL When `null`, the `serverlessapprepo` field will be omitted from the resulting object.\n - `serverlessrepo` (`string`): Use this to override the default service endpoint URL When `null`, the `serverlessrepo` field will be omitted from the resulting object.\n - `servicecatalog` (`string`): Use this to override the default service endpoint URL When `null`, the `servicecatalog` field will be omitted from the resulting object.\n - `servicecatalogappregistry` (`string`): Use this to override the default service endpoint URL When `null`, the `servicecatalogappregistry` field will be omitted from the resulting object.\n - `servicediscovery` (`string`): Use this to override the default service endpoint URL When `null`, the `servicediscovery` field will be omitted from the resulting object.\n - `servicequotas` (`string`): Use this to override the default service endpoint URL When `null`, the `servicequotas` field will be omitted from the resulting object.\n - `ses` (`string`): Use this to override the default service endpoint URL When `null`, the `ses` field will be omitted from the resulting object.\n - `sesv2` (`string`): Use this to override the default service endpoint URL When `null`, the `sesv2` field will be omitted from the resulting object.\n - `sfn` (`string`): Use this to override the default service endpoint URL When `null`, the `sfn` field will be omitted from the resulting object.\n - `shield` (`string`): Use this to override the default service endpoint URL When `null`, the `shield` field will be omitted from the resulting object.\n - `signer` (`string`): Use this to override the default service endpoint URL When `null`, the `signer` field will be omitted from the resulting object.\n - `simpledb` (`string`): Use this to override the default service endpoint URL When `null`, the `simpledb` field will be omitted from the resulting object.\n - `sns` (`string`): Use this to override the default service endpoint URL When `null`, the `sns` field will be omitted from the resulting object.\n - `sqs` (`string`): Use this to override the default service endpoint URL When `null`, the `sqs` field will be omitted from the resulting object.\n - `ssm` (`string`): Use this to override the default service endpoint URL When `null`, the `ssm` field will be omitted from the resulting object.\n - `ssmcontacts` (`string`): Use this to override the default service endpoint URL When `null`, the `ssmcontacts` field will be omitted from the resulting object.\n - `ssmincidents` (`string`): Use this to override the default service endpoint URL When `null`, the `ssmincidents` field will be omitted from the resulting object.\n - `ssmsap` (`string`): Use this to override the default service endpoint URL When `null`, the `ssmsap` field will be omitted from the resulting object.\n - `sso` (`string`): Use this to override the default service endpoint URL When `null`, the `sso` field will be omitted from the resulting object.\n - `ssoadmin` (`string`): Use this to override the default service endpoint URL When `null`, the `ssoadmin` field will be omitted from the resulting object.\n - `stepfunctions` (`string`): Use this to override the default service endpoint URL When `null`, the `stepfunctions` field will be omitted from the resulting object.\n - `storagegateway` (`string`): Use this to override the default service endpoint URL When `null`, the `storagegateway` field will be omitted from the resulting object.\n - `sts` (`string`): Use this to override the default service endpoint URL When `null`, the `sts` field will be omitted from the resulting object.\n - `swf` (`string`): Use this to override the default service endpoint URL When `null`, the `swf` field will be omitted from the resulting object.\n - `synthetics` (`string`): Use this to override the default service endpoint URL When `null`, the `synthetics` field will be omitted from the resulting object.\n - `timestreamwrite` (`string`): Use this to override the default service endpoint URL When `null`, the `timestreamwrite` field will be omitted from the resulting object.\n - `transcribe` (`string`): Use this to override the default service endpoint URL When `null`, the `transcribe` field will be omitted from the resulting object.\n - `transcribeservice` (`string`): Use this to override the default service endpoint URL When `null`, the `transcribeservice` field will be omitted from the resulting object.\n - `transfer` (`string`): Use this to override the default service endpoint URL When `null`, the `transfer` field will be omitted from the resulting object.\n - `verifiedpermissions` (`string`): Use this to override the default service endpoint URL When `null`, the `verifiedpermissions` field will be omitted from the resulting object.\n - `vpclattice` (`string`): Use this to override the default service endpoint URL When `null`, the `vpclattice` field will be omitted from the resulting object.\n - `waf` (`string`): Use this to override the default service endpoint URL When `null`, the `waf` field will be omitted from the resulting object.\n - `wafregional` (`string`): Use this to override the default service endpoint URL When `null`, the `wafregional` field will be omitted from the resulting object.\n - `wafv2` (`string`): Use this to override the default service endpoint URL When `null`, the `wafv2` field will be omitted from the resulting object.\n - `wellarchitected` (`string`): Use this to override the default service endpoint URL When `null`, the `wellarchitected` field will be omitted from the resulting object.\n - `worklink` (`string`): Use this to override the default service endpoint URL When `null`, the `worklink` field will be omitted from the resulting object.\n - `workspaces` (`string`): Use this to override the default service endpoint URL When `null`, the `workspaces` field will be omitted from the resulting object.\n - `xray` (`string`): Use this to override the default service endpoint URL When `null`, the `xray` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `endpoints` sub block.\n', args=[]), new( accessanalyzer=null, account=null, @@ -367,6 +367,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); locationservice=null, logs=null, lookoutmetrics=null, + m2=null, macie2=null, managedgrafana=null, mediaconnect=null, @@ -409,6 +410,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); redshiftdata=null, redshiftdataapiservice=null, redshiftserverless=null, + rekognition=null, resourceexplorer2=null, resourcegroups=null, resourcegroupstagging=null, @@ -636,6 +638,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); locationservice: locationservice, logs: logs, lookoutmetrics: lookoutmetrics, + m2: m2, macie2: macie2, managedgrafana: managedgrafana, mediaconnect: mediaconnect, @@ -678,6 +681,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); redshiftdata: redshiftdata, redshiftdataapiservice: redshiftdataapiservice, redshiftserverless: redshiftserverless, + rekognition: rekognition, resourceexplorer2: resourceexplorer2, resourcegroups: resourcegroups, resourcegroupstagging: resourcegroupstagging, diff --git a/5.x/_gen/resources/backup_plan.libsonnet b/5.x/_gen/resources/backup_plan.libsonnet index ced92bf0..79ddf6a1 100644 --- a/5.x/_gen/resources/backup_plan.libsonnet +++ b/5.x/_gen/resources/backup_plan.libsonnet @@ -50,13 +50,15 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); rule:: { copy_action:: { lifecycle:: { - '#new':: d.fn(help='\n`aws.backup_plan.rule.copy_action.lifecycle.new` constructs a new object with attributes and blocks configured for the `lifecycle`\nTerraform sub block.\n\n\n\n**Args**:\n - `cold_storage_after` (`number`): Set the `cold_storage_after` field on the resulting object. When `null`, the `cold_storage_after` field will be omitted from the resulting object.\n - `delete_after` (`number`): Set the `delete_after` field on the resulting object. When `null`, the `delete_after` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `lifecycle` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.backup_plan.rule.copy_action.lifecycle.new` constructs a new object with attributes and blocks configured for the `lifecycle`\nTerraform sub block.\n\n\n\n**Args**:\n - `cold_storage_after` (`number`): Set the `cold_storage_after` field on the resulting object. When `null`, the `cold_storage_after` field will be omitted from the resulting object.\n - `delete_after` (`number`): Set the `delete_after` field on the resulting object. When `null`, the `delete_after` field will be omitted from the resulting object.\n - `opt_in_to_archive_for_supported_resources` (`bool`): Set the `opt_in_to_archive_for_supported_resources` field on the resulting object. When `null`, the `opt_in_to_archive_for_supported_resources` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `lifecycle` sub block.\n', args=[]), new( cold_storage_after=null, - delete_after=null + delete_after=null, + opt_in_to_archive_for_supported_resources=null ):: std.prune(a={ cold_storage_after: cold_storage_after, delete_after: delete_after, + opt_in_to_archive_for_supported_resources: opt_in_to_archive_for_supported_resources, }), }, '#new':: d.fn(help='\n`aws.backup_plan.rule.copy_action.new` constructs a new object with attributes and blocks configured for the `copy_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `destination_vault_arn` (`string`): Set the `destination_vault_arn` field on the resulting object.\n - `lifecycle` (`list[obj]`): Set the `lifecycle` field on the resulting object. When `null`, the `lifecycle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.backup_plan.rule.copy_action.lifecycle.new](#fn-rulerulelifecyclenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `copy_action` sub block.\n', args=[]), @@ -69,13 +71,15 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }), }, lifecycle:: { - '#new':: d.fn(help='\n`aws.backup_plan.rule.lifecycle.new` constructs a new object with attributes and blocks configured for the `lifecycle`\nTerraform sub block.\n\n\n\n**Args**:\n - `cold_storage_after` (`number`): Set the `cold_storage_after` field on the resulting object. When `null`, the `cold_storage_after` field will be omitted from the resulting object.\n - `delete_after` (`number`): Set the `delete_after` field on the resulting object. When `null`, the `delete_after` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `lifecycle` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.backup_plan.rule.lifecycle.new` constructs a new object with attributes and blocks configured for the `lifecycle`\nTerraform sub block.\n\n\n\n**Args**:\n - `cold_storage_after` (`number`): Set the `cold_storage_after` field on the resulting object. When `null`, the `cold_storage_after` field will be omitted from the resulting object.\n - `delete_after` (`number`): Set the `delete_after` field on the resulting object. When `null`, the `delete_after` field will be omitted from the resulting object.\n - `opt_in_to_archive_for_supported_resources` (`bool`): Set the `opt_in_to_archive_for_supported_resources` field on the resulting object. When `null`, the `opt_in_to_archive_for_supported_resources` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `lifecycle` sub block.\n', args=[]), new( cold_storage_after=null, - delete_after=null + delete_after=null, + opt_in_to_archive_for_supported_resources=null ):: std.prune(a={ cold_storage_after: cold_storage_after, delete_after: delete_after, + opt_in_to_archive_for_supported_resources: opt_in_to_archive_for_supported_resources, }), }, '#new':: d.fn(help='\n`aws.backup_plan.rule.new` constructs a new object with attributes and blocks configured for the `rule`\nTerraform sub block.\n\n\n\n**Args**:\n - `completion_window` (`number`): Set the `completion_window` field on the resulting object. When `null`, the `completion_window` field will be omitted from the resulting object.\n - `enable_continuous_backup` (`bool`): Set the `enable_continuous_backup` field on the resulting object. When `null`, the `enable_continuous_backup` field will be omitted from the resulting object.\n - `recovery_point_tags` (`obj`): Set the `recovery_point_tags` field on the resulting object. When `null`, the `recovery_point_tags` field will be omitted from the resulting object.\n - `rule_name` (`string`): Set the `rule_name` field on the resulting object.\n - `schedule` (`string`): Set the `schedule` field on the resulting object. When `null`, the `schedule` field will be omitted from the resulting object.\n - `start_window` (`number`): Set the `start_window` field on the resulting object. When `null`, the `start_window` field will be omitted from the resulting object.\n - `target_vault_name` (`string`): Set the `target_vault_name` field on the resulting object.\n - `copy_action` (`list[obj]`): Set the `copy_action` field on the resulting object. When `null`, the `copy_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.backup_plan.rule.copy_action.new](#fn-rulecopy_actionnew) constructor.\n - `lifecycle` (`list[obj]`): Set the `lifecycle` field on the resulting object. When `null`, the `lifecycle` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.backup_plan.rule.lifecycle.new](#fn-rulelifecyclenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `rule` sub block.\n', args=[]), diff --git a/5.x/_gen/resources/eks_access_entry.libsonnet b/5.x/_gen/resources/eks_access_entry.libsonnet new file mode 100644 index 00000000..b2e3fbbe --- /dev/null +++ b/5.x/_gen/resources/eks_access_entry.libsonnet @@ -0,0 +1,124 @@ +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='eks_access_entry', url='', help='`eks_access_entry` represents the `aws_eks_access_entry` 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.eks_access_entry.new` injects a new `aws_eks_access_entry` 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.eks_access_entry.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.eks_access_entry` using the reference:\n\n $._ref.aws_eks_access_entry.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_eks_access_entry.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 - `cluster_name` (`string`): Set the `cluster_name` field on the resulting resource block.\n - `kubernetes_groups` (`list`): Set the `kubernetes_groups` field on the resulting resource block. When `null`, the `kubernetes_groups` field will be omitted from the resulting object.\n - `principal_arn` (`string`): Set the `principal_arn` 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 - `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.eks_access_entry.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, + cluster_name, + principal_arn, + kubernetes_groups=null, + tags=null, + tags_all=null, + timeouts=null, + _meta={} + ):: tf.withResource( + type='aws_eks_access_entry', + label=resourceLabel, + attrs=self.newAttrs( + cluster_name=cluster_name, + kubernetes_groups=kubernetes_groups, + principal_arn=principal_arn, + tags=tags, + tags_all=tags_all, + timeouts=timeouts + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.eks_access_entry.newAttrs` constructs a new object with attributes and blocks configured for the `eks_access_entry`\nTerraform resource.\n\nUnlike [aws.eks_access_entry.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 - `cluster_name` (`string`): Set the `cluster_name` field on the resulting object.\n - `kubernetes_groups` (`list`): Set the `kubernetes_groups` field on the resulting object. When `null`, the `kubernetes_groups` field will be omitted from the resulting object.\n - `principal_arn` (`string`): Set the `principal_arn` 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 - `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.eks_access_entry.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 `eks_access_entry` resource into the root Terraform configuration.\n', args=[]), + newAttrs( + cluster_name, + principal_arn, + kubernetes_groups=null, + tags=null, + tags_all=null, + timeouts=null + ):: std.prune(a={ + cluster_name: cluster_name, + kubernetes_groups: kubernetes_groups, + principal_arn: principal_arn, + tags: tags, + tags_all: tags_all, + timeouts: timeouts, + }), + timeouts:: { + '#new':: d.fn(help='\n`aws.eks_access_entry.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\n**Returns**:\n - An attribute object that represents the `timeouts` sub block.\n', args=[]), + new( + create=null, + delete=null + ):: std.prune(a={ + create: create, + delete: delete, + }), + }, + '#withClusterName':: d.fn(help='`aws.string.withClusterName` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the cluster_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 `cluster_name` field.\n', args=[]), + withClusterName(resourceLabel, value): { + resource+: { + aws_eks_access_entry+: { + [resourceLabel]+: { + cluster_name: value, + }, + }, + }, + }, + '#withKubernetesGroups':: d.fn(help='`aws.list.withKubernetesGroups` constructs a mixin object that can be merged into the `list`\nTerraform resource block to set or update the kubernetes_groups 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 `kubernetes_groups` field.\n', args=[]), + withKubernetesGroups(resourceLabel, value): { + resource+: { + aws_eks_access_entry+: { + [resourceLabel]+: { + kubernetes_groups: value, + }, + }, + }, + }, + '#withPrincipalArn':: d.fn(help='`aws.string.withPrincipalArn` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the principal_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 `principal_arn` field.\n', args=[]), + withPrincipalArn(resourceLabel, value): { + resource+: { + aws_eks_access_entry+: { + [resourceLabel]+: { + principal_arn: 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_eks_access_entry+: { + [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_eks_access_entry+: { + [resourceLabel]+: { + tags_all: 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_eks_access_entry+: { + [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_eks_access_entry+: { + [resourceLabel]+: { + timeouts+: value, + }, + }, + }, + }, +} diff --git a/5.x/_gen/resources/eks_access_policy_association.libsonnet b/5.x/_gen/resources/eks_access_policy_association.libsonnet new file mode 100644 index 00000000..b2aad3df --- /dev/null +++ b/5.x/_gen/resources/eks_access_policy_association.libsonnet @@ -0,0 +1,130 @@ +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='eks_access_policy_association', url='', help='`eks_access_policy_association` represents the `aws_eks_access_policy_association` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'), + access_scope:: { + '#new':: d.fn(help='\n`aws.eks_access_policy_association.access_scope.new` constructs a new object with attributes and blocks configured for the `access_scope`\nTerraform sub block.\n\n\n\n**Args**:\n - `namespaces` (`list`): Set the `namespaces` field on the resulting object. When `null`, the `namespaces` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `access_scope` sub block.\n', args=[]), + new( + type, + namespaces=null + ):: std.prune(a={ + namespaces: namespaces, + type: type, + }), + }, + '#new':: d.fn(help="\n`aws.eks_access_policy_association.new` injects a new `aws_eks_access_policy_association` 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.eks_access_policy_association.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.eks_access_policy_association` using the reference:\n\n $._ref.aws_eks_access_policy_association.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_eks_access_policy_association.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 - `cluster_name` (`string`): Set the `cluster_name` field on the resulting resource block.\n - `policy_arn` (`string`): Set the `policy_arn` field on the resulting resource block.\n - `principal_arn` (`string`): Set the `principal_arn` field on the resulting resource block.\n - `access_scope` (`list[obj]`): Set the `access_scope` field on the resulting resource block. When `null`, the `access_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.eks_access_policy_association.access_scope.new](#fn-access_scopenew) 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.eks_access_policy_association.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, + cluster_name, + policy_arn, + principal_arn, + access_scope=null, + timeouts=null, + _meta={} + ):: tf.withResource( + type='aws_eks_access_policy_association', + label=resourceLabel, + attrs=self.newAttrs( + access_scope=access_scope, + cluster_name=cluster_name, + policy_arn=policy_arn, + principal_arn=principal_arn, + timeouts=timeouts + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.eks_access_policy_association.newAttrs` constructs a new object with attributes and blocks configured for the `eks_access_policy_association`\nTerraform resource.\n\nUnlike [aws.eks_access_policy_association.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 - `cluster_name` (`string`): Set the `cluster_name` field on the resulting object.\n - `policy_arn` (`string`): Set the `policy_arn` field on the resulting object.\n - `principal_arn` (`string`): Set the `principal_arn` field on the resulting object.\n - `access_scope` (`list[obj]`): Set the `access_scope` field on the resulting object. When `null`, the `access_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.eks_access_policy_association.access_scope.new](#fn-access_scopenew) 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.eks_access_policy_association.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 `eks_access_policy_association` resource into the root Terraform configuration.\n', args=[]), + newAttrs( + cluster_name, + policy_arn, + principal_arn, + access_scope=null, + timeouts=null + ):: std.prune(a={ + access_scope: access_scope, + cluster_name: cluster_name, + policy_arn: policy_arn, + principal_arn: principal_arn, + timeouts: timeouts, + }), + timeouts:: { + '#new':: d.fn(help='\n`aws.eks_access_policy_association.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\n**Returns**:\n - An attribute object that represents the `timeouts` sub block.\n', args=[]), + new( + create=null, + delete=null + ):: std.prune(a={ + create: create, + delete: delete, + }), + }, + '#withAccessScope':: d.fn(help='`aws.list[obj].withAccessScope` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the access_scope 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].withAccessScopeMixin](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 `access_scope` field.\n', args=[]), + withAccessScope(resourceLabel, value): { + resource+: { + aws_eks_access_policy_association+: { + [resourceLabel]+: { + access_scope: value, + }, + }, + }, + }, + '#withAccessScopeMixin':: d.fn(help='`aws.list[obj].withAccessScopeMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the access_scope 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].withAccessScope](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 `access_scope` field.\n', args=[]), + withAccessScopeMixin(resourceLabel, value): { + resource+: { + aws_eks_access_policy_association+: { + [resourceLabel]+: { + access_scope+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withClusterName':: d.fn(help='`aws.string.withClusterName` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the cluster_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 `cluster_name` field.\n', args=[]), + withClusterName(resourceLabel, value): { + resource+: { + aws_eks_access_policy_association+: { + [resourceLabel]+: { + cluster_name: value, + }, + }, + }, + }, + '#withPolicyArn':: d.fn(help='`aws.string.withPolicyArn` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the policy_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 `policy_arn` field.\n', args=[]), + withPolicyArn(resourceLabel, value): { + resource+: { + aws_eks_access_policy_association+: { + [resourceLabel]+: { + policy_arn: value, + }, + }, + }, + }, + '#withPrincipalArn':: d.fn(help='`aws.string.withPrincipalArn` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the principal_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 `principal_arn` field.\n', args=[]), + withPrincipalArn(resourceLabel, value): { + resource+: { + aws_eks_access_policy_association+: { + [resourceLabel]+: { + principal_arn: 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_eks_access_policy_association+: { + [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_eks_access_policy_association+: { + [resourceLabel]+: { + timeouts+: value, + }, + }, + }, + }, +} diff --git a/5.x/_gen/resources/eks_cluster.libsonnet b/5.x/_gen/resources/eks_cluster.libsonnet index c0d011bd..58f425fb 100644 --- a/5.x/_gen/resources/eks_cluster.libsonnet +++ b/5.x/_gen/resources/eks_cluster.libsonnet @@ -2,6 +2,16 @@ 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='eks_cluster', url='', help='`eks_cluster` represents the `aws_eks_cluster` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'), + access_config:: { + '#new':: d.fn(help='\n`aws.eks_cluster.access_config.new` constructs a new object with attributes and blocks configured for the `access_config`\nTerraform sub block.\n\n\n\n**Args**:\n - `authentication_mode` (`string`): Set the `authentication_mode` field on the resulting object. When `null`, the `authentication_mode` field will be omitted from the resulting object.\n - `bootstrap_cluster_creator_admin_permissions` (`bool`): Set the `bootstrap_cluster_creator_admin_permissions` field on the resulting object. When `null`, the `bootstrap_cluster_creator_admin_permissions` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `access_config` sub block.\n', args=[]), + new( + authentication_mode=null, + bootstrap_cluster_creator_admin_permissions=null + ):: std.prune(a={ + authentication_mode: authentication_mode, + bootstrap_cluster_creator_admin_permissions: bootstrap_cluster_creator_admin_permissions, + }), + }, encryption_config:: { '#new':: d.fn(help='\n`aws.eks_cluster.encryption_config.new` constructs a new object with attributes and blocks configured for the `encryption_config`\nTerraform sub block.\n\n\n\n**Args**:\n - `resources` (`list`): Set the `resources` field on the resulting object.\n - `provider` (`list[obj]`): Set the `provider` field on the resulting object. When `null`, the `provider` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.encryption_config.provider.new](#fn-encryption_configprovidernew) constructor.\n\n**Returns**:\n - An attribute object that represents the `encryption_config` sub block.\n', args=[]), new( @@ -30,11 +40,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); service_ipv4_cidr: service_ipv4_cidr, }), }, - '#new':: d.fn(help="\n`aws.eks_cluster.new` injects a new `aws_eks_cluster` 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.eks_cluster.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.eks_cluster` using the reference:\n\n $._ref.aws_eks_cluster.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_eks_cluster.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_cluster_log_types` (`list`): Set the `enabled_cluster_log_types` field on the resulting resource block. When `null`, the `enabled_cluster_log_types` 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 - `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 - `version` (`string`): Set the `version` field on the resulting resource block. When `null`, the `version` field will be omitted from the resulting object.\n - `encryption_config` (`list[obj]`): Set the `encryption_config` field on the resulting resource block. When `null`, the `encryption_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.encryption_config.new](#fn-encryption_confignew) constructor.\n - `kubernetes_network_config` (`list[obj]`): Set the `kubernetes_network_config` field on the resulting resource block. When `null`, the `kubernetes_network_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.kubernetes_network_config.new](#fn-kubernetes_network_confignew) constructor.\n - `outpost_config` (`list[obj]`): Set the `outpost_config` field on the resulting resource block. When `null`, the `outpost_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.outpost_config.new](#fn-outpost_confignew) 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.eks_cluster.timeouts.new](#fn-timeoutsnew) constructor.\n - `vpc_config` (`list[obj]`): Set the `vpc_config` field on the resulting resource block. When `null`, the `vpc_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.vpc_config.new](#fn-vpc_confignew) 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.eks_cluster.new` injects a new `aws_eks_cluster` 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.eks_cluster.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.eks_cluster` using the reference:\n\n $._ref.aws_eks_cluster.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_eks_cluster.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_cluster_log_types` (`list`): Set the `enabled_cluster_log_types` field on the resulting resource block. When `null`, the `enabled_cluster_log_types` 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 - `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 - `version` (`string`): Set the `version` field on the resulting resource block. When `null`, the `version` field will be omitted from the resulting object.\n - `access_config` (`list[obj]`): Set the `access_config` field on the resulting resource block. When `null`, the `access_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.access_config.new](#fn-access_confignew) constructor.\n - `encryption_config` (`list[obj]`): Set the `encryption_config` field on the resulting resource block. When `null`, the `encryption_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.encryption_config.new](#fn-encryption_confignew) constructor.\n - `kubernetes_network_config` (`list[obj]`): Set the `kubernetes_network_config` field on the resulting resource block. When `null`, the `kubernetes_network_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.kubernetes_network_config.new](#fn-kubernetes_network_confignew) constructor.\n - `outpost_config` (`list[obj]`): Set the `outpost_config` field on the resulting resource block. When `null`, the `outpost_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.outpost_config.new](#fn-outpost_confignew) 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.eks_cluster.timeouts.new](#fn-timeoutsnew) constructor.\n - `vpc_config` (`list[obj]`): Set the `vpc_config` field on the resulting resource block. When `null`, the `vpc_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.vpc_config.new](#fn-vpc_confignew) 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, + access_config=null, enabled_cluster_log_types=null, encryption_config=null, kubernetes_network_config=null, @@ -49,6 +60,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); type='aws_eks_cluster', label=resourceLabel, attrs=self.newAttrs( + access_config=access_config, enabled_cluster_log_types=enabled_cluster_log_types, encryption_config=encryption_config, kubernetes_network_config=kubernetes_network_config, @@ -63,10 +75,11 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ), _meta=_meta ), - '#newAttrs':: d.fn(help='\n`aws.eks_cluster.newAttrs` constructs a new object with attributes and blocks configured for the `eks_cluster`\nTerraform resource.\n\nUnlike [aws.eks_cluster.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_cluster_log_types` (`list`): Set the `enabled_cluster_log_types` field on the resulting object. When `null`, the `enabled_cluster_log_types` 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 - `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 - `version` (`string`): Set the `version` field on the resulting object. When `null`, the `version` field will be omitted from the resulting object.\n - `encryption_config` (`list[obj]`): Set the `encryption_config` field on the resulting object. When `null`, the `encryption_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.encryption_config.new](#fn-encryption_confignew) constructor.\n - `kubernetes_network_config` (`list[obj]`): Set the `kubernetes_network_config` field on the resulting object. When `null`, the `kubernetes_network_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.kubernetes_network_config.new](#fn-kubernetes_network_confignew) constructor.\n - `outpost_config` (`list[obj]`): Set the `outpost_config` field on the resulting object. When `null`, the `outpost_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.outpost_config.new](#fn-outpost_confignew) 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.eks_cluster.timeouts.new](#fn-timeoutsnew) constructor.\n - `vpc_config` (`list[obj]`): Set the `vpc_config` field on the resulting object. When `null`, the `vpc_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.vpc_config.new](#fn-vpc_confignew) 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 `eks_cluster` resource into the root Terraform configuration.\n', args=[]), + '#newAttrs':: d.fn(help='\n`aws.eks_cluster.newAttrs` constructs a new object with attributes and blocks configured for the `eks_cluster`\nTerraform resource.\n\nUnlike [aws.eks_cluster.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_cluster_log_types` (`list`): Set the `enabled_cluster_log_types` field on the resulting object. When `null`, the `enabled_cluster_log_types` 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 - `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 - `version` (`string`): Set the `version` field on the resulting object. When `null`, the `version` field will be omitted from the resulting object.\n - `access_config` (`list[obj]`): Set the `access_config` field on the resulting object. When `null`, the `access_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.access_config.new](#fn-access_confignew) constructor.\n - `encryption_config` (`list[obj]`): Set the `encryption_config` field on the resulting object. When `null`, the `encryption_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.encryption_config.new](#fn-encryption_confignew) constructor.\n - `kubernetes_network_config` (`list[obj]`): Set the `kubernetes_network_config` field on the resulting object. When `null`, the `kubernetes_network_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.kubernetes_network_config.new](#fn-kubernetes_network_confignew) constructor.\n - `outpost_config` (`list[obj]`): Set the `outpost_config` field on the resulting object. When `null`, the `outpost_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.outpost_config.new](#fn-outpost_confignew) 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.eks_cluster.timeouts.new](#fn-timeoutsnew) constructor.\n - `vpc_config` (`list[obj]`): Set the `vpc_config` field on the resulting object. When `null`, the `vpc_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.vpc_config.new](#fn-vpc_confignew) 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 `eks_cluster` resource into the root Terraform configuration.\n', args=[]), newAttrs( name, role_arn, + access_config=null, enabled_cluster_log_types=null, encryption_config=null, kubernetes_network_config=null, @@ -77,6 +90,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); version=null, vpc_config=null ):: std.prune(a={ + access_config: access_config, enabled_cluster_log_types: enabled_cluster_log_types, encryption_config: encryption_config, kubernetes_network_config: kubernetes_network_config, @@ -137,6 +151,26 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); subnet_ids: subnet_ids, }), }, + '#withAccessConfig':: d.fn(help='`aws.list[obj].withAccessConfig` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the access_config 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].withAccessConfigMixin](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 `access_config` field.\n', args=[]), + withAccessConfig(resourceLabel, value): { + resource+: { + aws_eks_cluster+: { + [resourceLabel]+: { + access_config: value, + }, + }, + }, + }, + '#withAccessConfigMixin':: d.fn(help='`aws.list[obj].withAccessConfigMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the access_config 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].withAccessConfig](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 `access_config` field.\n', args=[]), + withAccessConfigMixin(resourceLabel, value): { + resource+: { + aws_eks_cluster+: { + [resourceLabel]+: { + access_config+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, '#withEnabledClusterLogTypes':: d.fn(help='`aws.list.withEnabledClusterLogTypes` constructs a mixin object that can be merged into the `list`\nTerraform resource block to set or update the enabled_cluster_log_types 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 `enabled_cluster_log_types` field.\n', args=[]), withEnabledClusterLogTypes(resourceLabel, value): { resource+: { diff --git a/5.x/_gen/resources/lakeformation_resource.libsonnet b/5.x/_gen/resources/lakeformation_resource.libsonnet index bcf04a91..a558c7dc 100644 --- a/5.x/_gen/resources/lakeformation_resource.libsonnet +++ b/5.x/_gen/resources/lakeformation_resource.libsonnet @@ -2,25 +2,28 @@ 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='lakeformation_resource', url='', help='`lakeformation_resource` represents the `aws_lakeformation_resource` 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.lakeformation_resource.new` injects a new `aws_lakeformation_resource` 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.lakeformation_resource.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.lakeformation_resource` using the reference:\n\n $._ref.aws_lakeformation_resource.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_lakeformation_resource.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 - `arn` (`string`): Set the `arn` field on the resulting resource block.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting resource block. When `null`, the `role_arn` field will be omitted from the resulting object.\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.lakeformation_resource.new` injects a new `aws_lakeformation_resource` 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.lakeformation_resource.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.lakeformation_resource` using the reference:\n\n $._ref.aws_lakeformation_resource.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_lakeformation_resource.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 - `arn` (`string`): Set the `arn` field on the resulting resource block.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting resource block. When `null`, the `role_arn` field will be omitted from the resulting object.\n - `use_service_linked_role` (`bool`): Set the `use_service_linked_role` field on the resulting resource block. When `null`, the `use_service_linked_role` field will be omitted from the resulting object.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), new( resourceLabel, arn, role_arn=null, + use_service_linked_role=null, _meta={} ):: tf.withResource( type='aws_lakeformation_resource', label=resourceLabel, - attrs=self.newAttrs(arn=arn, role_arn=role_arn), + attrs=self.newAttrs(arn=arn, role_arn=role_arn, use_service_linked_role=use_service_linked_role), _meta=_meta ), - '#newAttrs':: d.fn(help='\n`aws.lakeformation_resource.newAttrs` constructs a new object with attributes and blocks configured for the `lakeformation_resource`\nTerraform resource.\n\nUnlike [aws.lakeformation_resource.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 - `arn` (`string`): Set the `arn` field on the resulting object.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting object. When `null`, the `role_arn` field will be omitted from 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 `lakeformation_resource` resource into the root Terraform configuration.\n', args=[]), + '#newAttrs':: d.fn(help='\n`aws.lakeformation_resource.newAttrs` constructs a new object with attributes and blocks configured for the `lakeformation_resource`\nTerraform resource.\n\nUnlike [aws.lakeformation_resource.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 - `arn` (`string`): Set the `arn` field on the resulting object.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting object. When `null`, the `role_arn` field will be omitted from the resulting object.\n - `use_service_linked_role` (`bool`): Set the `use_service_linked_role` field on the resulting object. When `null`, the `use_service_linked_role` field will be omitted from 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 `lakeformation_resource` resource into the root Terraform configuration.\n', args=[]), newAttrs( arn, - role_arn=null + role_arn=null, + use_service_linked_role=null ):: std.prune(a={ arn: arn, role_arn: role_arn, + use_service_linked_role: use_service_linked_role, }), '#withArn':: d.fn(help='`aws.string.withArn` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the 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 `arn` field.\n', args=[]), withArn(resourceLabel, value): { @@ -42,4 +45,14 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }, }, }, + '#withUseServiceLinkedRole':: d.fn(help='`aws.bool.withUseServiceLinkedRole` constructs a mixin object that can be merged into the `bool`\nTerraform resource block to set or update the use_service_linked_role field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`bool`): The value to set for the `use_service_linked_role` field.\n', args=[]), + withUseServiceLinkedRole(resourceLabel, value): { + resource+: { + aws_lakeformation_resource+: { + [resourceLabel]+: { + use_service_linked_role: value, + }, + }, + }, + }, } diff --git a/5.x/_gen/resources/lexv2models_intent.libsonnet b/5.x/_gen/resources/lexv2models_intent.libsonnet new file mode 100644 index 00000000..4859c77f --- /dev/null +++ b/5.x/_gen/resources/lexv2models_intent.libsonnet @@ -0,0 +1,10080 @@ +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='lexv2models_intent', url='', help='`lexv2models_intent` represents the `aws_lexv2models_intent` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'), + closing_setting:: { + closing_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.image_response_card.button.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.custom_payload.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.image_response_card.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.plain_text_message.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.ssml_message.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.new](#fn-closing_settingclosing_settingclosing_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.new](#fn-closing_settingclosing_settingclosing_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.image_response_card.button.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.custom_payload.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.image_response_card.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.plain_text_message.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.ssml_message.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.closing_response.new` constructs a new object with attributes and blocks configured for the `closing_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.new](#fn-closing_settingclosing_settingmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `closing_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.closing_setting.conditional.conditional_branch.condition.new](#fn-closing_settingclosing_settingconditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.new](#fn-closing_settingclosing_settingconditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.new](#fn-closing_settingclosing_settingconditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.slot.new](#fn-closing_settingclosing_settingconditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.slot.value.new](#fn-closing_settingclosing_settingconditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.dialog_action.new](#fn-closing_settingclosing_settingconditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.new](#fn-closing_settingclosing_settingconditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.new](#fn-closing_settingclosing_settingconditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.new](#fn-closing_settingclosing_settingconditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.new](#fn-closing_settingclosing_settingconditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.slot.new](#fn-closing_settingclosing_settingconditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.slot.value.new](#fn-closing_settingclosing_settingconditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.dialog_action.new](#fn-closing_settingclosing_settingconditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.new](#fn-closing_settingclosing_settingconditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.custom_payload.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.image_response_card.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.ssml_message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.new](#fn-closing_settingclosing_settingconditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.conditional.new` constructs a new object with attributes and blocks configured for the `conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.new](#fn-closing_settingclosing_settingconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.new](#fn-closing_settingclosing_settingdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.new` constructs a new object with attributes and blocks configured for the `closing_setting`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object. When `null`, the `active` field will be omitted from the resulting object.\n - `closing_response` (`list[obj]`): Set the `closing_response` field on the resulting object. When `null`, the `closing_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.new](#fn-closing_settingclosing_responsenew) constructor.\n - `conditional` (`list[obj]`): Set the `conditional` field on the resulting object. When `null`, the `conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.new](#fn-closing_settingconditionalnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.next_step.new](#fn-closing_settingnext_stepnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `closing_setting` sub block.\n', args=[]), + new( + active=null, + closing_response=null, + conditional=null, + next_step=null + ):: std.prune(a={ + active: active, + closing_response: closing_response, + conditional: conditional, + next_step: next_step, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.next_step.intent.slot.new](#fn-closing_settingclosing_settingnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.closing_setting.next_step.intent.slot.value.new](#fn-closing_settingclosing_settingnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.closing_setting.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.next_step.dialog_action.new](#fn-closing_settingclosing_settingdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.next_step.intent.new](#fn-closing_settingclosing_settingintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + }, + confirmation_setting:: { + code_hook:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.new` constructs a new object with attributes and blocks configured for the `code_hook`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `enable_code_hook_invocation` (`bool`): Set the `enable_code_hook_invocation` field on the resulting object.\n - `invocation_label` (`string`): Set the `invocation_label` field on the resulting object. When `null`, the `invocation_label` field will be omitted from the resulting object.\n - `post_code_hook_specification` (`list[obj]`): Set the `post_code_hook_specification` field on the resulting object. When `null`, the `post_code_hook_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.new](#fn-confirmation_settingconfirmation_settingpost_code_hook_specificationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `code_hook` sub block.\n', args=[]), + new( + active, + enable_code_hook_invocation, + invocation_label=null, + post_code_hook_specification=null + ):: std.prune(a={ + active: active, + enable_code_hook_invocation: enable_code_hook_invocation, + invocation_label: invocation_label, + post_code_hook_specification: post_code_hook_specification, + }), + post_code_hook_specification:: { + failure_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.new` constructs a new object with attributes and blocks configured for the `failure_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + failure_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.new` constructs a new object with attributes and blocks configured for the `failure_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + failure_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.new` constructs a new object with attributes and blocks configured for the `failure_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.new` constructs a new object with attributes and blocks configured for the `post_code_hook_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `failure_conditional` (`list[obj]`): Set the `failure_conditional` field on the resulting object. When `null`, the `failure_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.new](#fn-confirmation_settingconfirmation_settingcode_hookfailure_conditionalnew) constructor.\n - `failure_next_step` (`list[obj]`): Set the `failure_next_step` field on the resulting object. When `null`, the `failure_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookfailure_next_stepnew) constructor.\n - `failure_response` (`list[obj]`): Set the `failure_response` field on the resulting object. When `null`, the `failure_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.new](#fn-confirmation_settingconfirmation_settingcode_hookfailure_responsenew) constructor.\n - `success_conditional` (`list[obj]`): Set the `success_conditional` field on the resulting object. When `null`, the `success_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.new](#fn-confirmation_settingconfirmation_settingcode_hooksuccess_conditionalnew) constructor.\n - `success_next_step` (`list[obj]`): Set the `success_next_step` field on the resulting object. When `null`, the `success_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.new](#fn-confirmation_settingconfirmation_settingcode_hooksuccess_next_stepnew) constructor.\n - `success_response` (`list[obj]`): Set the `success_response` field on the resulting object. When `null`, the `success_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.new](#fn-confirmation_settingconfirmation_settingcode_hooksuccess_responsenew) constructor.\n - `timeout_conditional` (`list[obj]`): Set the `timeout_conditional` field on the resulting object. When `null`, the `timeout_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.new](#fn-confirmation_settingconfirmation_settingcode_hooktimeout_conditionalnew) constructor.\n - `timeout_next_step` (`list[obj]`): Set the `timeout_next_step` field on the resulting object. When `null`, the `timeout_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.new](#fn-confirmation_settingconfirmation_settingcode_hooktimeout_next_stepnew) constructor.\n - `timeout_response` (`list[obj]`): Set the `timeout_response` field on the resulting object. When `null`, the `timeout_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.new](#fn-confirmation_settingconfirmation_settingcode_hooktimeout_responsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `post_code_hook_specification` sub block.\n', args=[]), + new( + failure_conditional=null, + failure_next_step=null, + failure_response=null, + success_conditional=null, + success_next_step=null, + success_response=null, + timeout_conditional=null, + timeout_next_step=null, + timeout_response=null + ):: std.prune(a={ + failure_conditional: failure_conditional, + failure_next_step: failure_next_step, + failure_response: failure_response, + success_conditional: success_conditional, + success_next_step: success_next_step, + success_response: success_response, + timeout_conditional: timeout_conditional, + timeout_next_step: timeout_next_step, + timeout_response: timeout_response, + }), + success_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.new` constructs a new object with attributes and blocks configured for the `success_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `success_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + success_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.new` constructs a new object with attributes and blocks configured for the `success_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `success_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + success_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.new` constructs a new object with attributes and blocks configured for the `success_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `success_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + timeout_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.new` constructs a new object with attributes and blocks configured for the `timeout_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `timeout_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + timeout_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.new` constructs a new object with attributes and blocks configured for the `timeout_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `timeout_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + timeout_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.new` constructs a new object with attributes and blocks configured for the `timeout_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `timeout_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + }, + confirmation_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.new` constructs a new object with attributes and blocks configured for the `confirmation_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `confirmation_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + confirmation_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingconfirmation_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingconfirmation_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.new` constructs a new object with attributes and blocks configured for the `confirmation_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.new](#fn-confirmation_settingconfirmation_settingintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `confirmation_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + confirmation_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.confirmation_response.new` constructs a new object with attributes and blocks configured for the `confirmation_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.new](#fn-confirmation_settingconfirmation_settingmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `confirmation_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + declination_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_conditional.new` constructs a new object with attributes and blocks configured for the `declination_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `declination_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + declination_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingdeclination_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.declination_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingdeclination_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_next_step.new` constructs a new object with attributes and blocks configured for the `declination_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.new](#fn-confirmation_settingconfirmation_settingintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `declination_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + declination_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingdeclination_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.declination_response.new` constructs a new object with attributes and blocks configured for the `declination_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.new](#fn-confirmation_settingconfirmation_settingmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `declination_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + elicitation_code_hook:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.elicitation_code_hook.new` constructs a new object with attributes and blocks configured for the `elicitation_code_hook`\nTerraform sub block.\n\n\n\n**Args**:\n - `enable_code_hook_invocation` (`bool`): Set the `enable_code_hook_invocation` field on the resulting object. When `null`, the `enable_code_hook_invocation` field will be omitted from the resulting object.\n - `invocation_label` (`string`): Set the `invocation_label` field on the resulting object. When `null`, the `invocation_label` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `elicitation_code_hook` sub block.\n', args=[]), + new( + enable_code_hook_invocation=null, + invocation_label=null + ):: std.prune(a={ + enable_code_hook_invocation: enable_code_hook_invocation, + invocation_label: invocation_label, + }), + }, + failure_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_conditional.new` constructs a new object with attributes and blocks configured for the `failure_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + failure_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingfailure_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.confirmation_setting.failure_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingfailure_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_next_step.new` constructs a new object with attributes and blocks configured for the `failure_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.new](#fn-confirmation_settingconfirmation_settingintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + failure_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingfailure_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.failure_response.new` constructs a new object with attributes and blocks configured for the `failure_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.new](#fn-confirmation_settingconfirmation_settingmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.new` constructs a new object with attributes and blocks configured for the `confirmation_setting`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object. When `null`, the `active` field will be omitted from the resulting object.\n - `code_hook` (`list[obj]`): Set the `code_hook` field on the resulting object. When `null`, the `code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.new](#fn-confirmation_settingcode_hooknew) constructor.\n - `confirmation_conditional` (`list[obj]`): Set the `confirmation_conditional` field on the resulting object. When `null`, the `confirmation_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.new](#fn-confirmation_settingconfirmation_conditionalnew) constructor.\n - `confirmation_next_step` (`list[obj]`): Set the `confirmation_next_step` field on the resulting object. When `null`, the `confirmation_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_next_step.new](#fn-confirmation_settingconfirmation_next_stepnew) constructor.\n - `confirmation_response` (`list[obj]`): Set the `confirmation_response` field on the resulting object. When `null`, the `confirmation_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.new](#fn-confirmation_settingconfirmation_responsenew) constructor.\n - `declination_conditional` (`list[obj]`): Set the `declination_conditional` field on the resulting object. When `null`, the `declination_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.new](#fn-confirmation_settingdeclination_conditionalnew) constructor.\n - `declination_next_step` (`list[obj]`): Set the `declination_next_step` field on the resulting object. When `null`, the `declination_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_next_step.new](#fn-confirmation_settingdeclination_next_stepnew) constructor.\n - `declination_response` (`list[obj]`): Set the `declination_response` field on the resulting object. When `null`, the `declination_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.new](#fn-confirmation_settingdeclination_responsenew) constructor.\n - `elicitation_code_hook` (`list[obj]`): Set the `elicitation_code_hook` field on the resulting object. When `null`, the `elicitation_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.elicitation_code_hook.new](#fn-confirmation_settingelicitation_code_hooknew) constructor.\n - `failure_conditional` (`list[obj]`): Set the `failure_conditional` field on the resulting object. When `null`, the `failure_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.new](#fn-confirmation_settingfailure_conditionalnew) constructor.\n - `failure_next_step` (`list[obj]`): Set the `failure_next_step` field on the resulting object. When `null`, the `failure_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_next_step.new](#fn-confirmation_settingfailure_next_stepnew) constructor.\n - `failure_response` (`list[obj]`): Set the `failure_response` field on the resulting object. When `null`, the `failure_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.new](#fn-confirmation_settingfailure_responsenew) constructor.\n - `prompt_specification` (`list[obj]`): Set the `prompt_specification` field on the resulting object. When `null`, the `prompt_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.new](#fn-confirmation_settingprompt_specificationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `confirmation_setting` sub block.\n', args=[]), + new( + active=null, + code_hook=null, + confirmation_conditional=null, + confirmation_next_step=null, + confirmation_response=null, + declination_conditional=null, + declination_next_step=null, + declination_response=null, + elicitation_code_hook=null, + failure_conditional=null, + failure_next_step=null, + failure_response=null, + prompt_specification=null + ):: std.prune(a={ + active: active, + code_hook: code_hook, + confirmation_conditional: confirmation_conditional, + confirmation_next_step: confirmation_next_step, + confirmation_response: confirmation_response, + declination_conditional: declination_conditional, + declination_next_step: declination_next_step, + declination_response: declination_response, + elicitation_code_hook: elicitation_code_hook, + failure_conditional: failure_conditional, + failure_next_step: failure_next_step, + failure_response: failure_response, + prompt_specification: prompt_specification, + }), + prompt_specification:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.new](#fn-confirmation_settingconfirmation_settingprompt_specificationvariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.new` constructs a new object with attributes and blocks configured for the `prompt_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `max_retries` (`number`): Set the `max_retries` field on the resulting object.\n - `message_selection_strategy` (`string`): Set the `message_selection_strategy` field on the resulting object. When `null`, the `message_selection_strategy` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.new](#fn-confirmation_settingconfirmation_settingmessage_groupnew) constructor.\n - `prompt_attempts_specification` (`list[obj]`): Set the `prompt_attempts_specification` field on the resulting object. When `null`, the `prompt_attempts_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.new](#fn-confirmation_settingconfirmation_settingprompt_attempts_specificationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `prompt_specification` sub block.\n', args=[]), + new( + max_retries, + allow_interrupt=null, + message_group=null, + message_selection_strategy=null, + prompt_attempts_specification=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + max_retries: max_retries, + message_group: message_group, + message_selection_strategy: message_selection_strategy, + prompt_attempts_specification: prompt_attempts_specification, + }), + prompt_attempts_specification:: { + allowed_input_types:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.allowed_input_types.new` constructs a new object with attributes and blocks configured for the `allowed_input_types`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_audio_input` (`bool`): Set the `allow_audio_input` field on the resulting object.\n - `allow_dtmf_input` (`bool`): Set the `allow_dtmf_input` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `allowed_input_types` sub block.\n', args=[]), + new( + allow_audio_input, + allow_dtmf_input + ):: std.prune(a={ + allow_audio_input: allow_audio_input, + allow_dtmf_input: allow_dtmf_input, + }), + }, + audio_and_dtmf_input_specification:: { + audio_specification:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.audio_specification.new` constructs a new object with attributes and blocks configured for the `audio_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `end_timeout_ms` (`number`): Set the `end_timeout_ms` field on the resulting object.\n - `max_length_ms` (`number`): Set the `max_length_ms` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `audio_specification` sub block.\n', args=[]), + new( + end_timeout_ms, + max_length_ms + ):: std.prune(a={ + end_timeout_ms: end_timeout_ms, + max_length_ms: max_length_ms, + }), + }, + dtmf_specification:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.dtmf_specification.new` constructs a new object with attributes and blocks configured for the `dtmf_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `deletion_character` (`string`): Set the `deletion_character` field on the resulting object.\n - `end_character` (`string`): Set the `end_character` field on the resulting object.\n - `end_timeout_ms` (`number`): Set the `end_timeout_ms` field on the resulting object.\n - `max_length` (`number`): Set the `max_length` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dtmf_specification` sub block.\n', args=[]), + new( + deletion_character, + end_character, + end_timeout_ms, + max_length + ):: std.prune(a={ + deletion_character: deletion_character, + end_character: end_character, + end_timeout_ms: end_timeout_ms, + max_length: max_length, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.new` constructs a new object with attributes and blocks configured for the `audio_and_dtmf_input_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `start_timeout_ms` (`number`): Set the `start_timeout_ms` field on the resulting object.\n - `audio_specification` (`list[obj]`): Set the `audio_specification` field on the resulting object. When `null`, the `audio_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.audio_specification.new](#fn-confirmation_settingconfirmation_settingprompt_specificationprompt_attempts_specificationaudio_specificationnew) constructor.\n - `dtmf_specification` (`list[obj]`): Set the `dtmf_specification` field on the resulting object. When `null`, the `dtmf_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.dtmf_specification.new](#fn-confirmation_settingconfirmation_settingprompt_specificationprompt_attempts_specificationdtmf_specificationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `audio_and_dtmf_input_specification` sub block.\n', args=[]), + new( + start_timeout_ms, + audio_specification=null, + dtmf_specification=null + ):: std.prune(a={ + audio_specification: audio_specification, + dtmf_specification: dtmf_specification, + start_timeout_ms: start_timeout_ms, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.new` constructs a new object with attributes and blocks configured for the `prompt_attempts_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `map_block_key` (`string`): Set the `map_block_key` field on the resulting object.\n - `allowed_input_types` (`list[obj]`): Set the `allowed_input_types` field on the resulting object. When `null`, the `allowed_input_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.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.allowed_input_types.new](#fn-confirmation_settingconfirmation_settingprompt_specificationallowed_input_typesnew) constructor.\n - `audio_and_dtmf_input_specification` (`list[obj]`): Set the `audio_and_dtmf_input_specification` field on the resulting object. When `null`, the `audio_and_dtmf_input_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.new](#fn-confirmation_settingconfirmation_settingprompt_specificationaudio_and_dtmf_input_specificationnew) constructor.\n - `text_input_specification` (`list[obj]`): Set the `text_input_specification` field on the resulting object. When `null`, the `text_input_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.text_input_specification.new](#fn-confirmation_settingconfirmation_settingprompt_specificationtext_input_specificationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `prompt_attempts_specification` sub block.\n', args=[]), + new( + map_block_key, + allow_interrupt=null, + allowed_input_types=null, + audio_and_dtmf_input_specification=null, + text_input_specification=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + allowed_input_types: allowed_input_types, + audio_and_dtmf_input_specification: audio_and_dtmf_input_specification, + map_block_key: map_block_key, + text_input_specification: text_input_specification, + }), + text_input_specification:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.text_input_specification.new` constructs a new object with attributes and blocks configured for the `text_input_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `start_timeout_ms` (`number`): Set the `start_timeout_ms` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `text_input_specification` sub block.\n', args=[]), + new( + start_timeout_ms + ):: std.prune(a={ + start_timeout_ms: start_timeout_ms, + }), + }, + }, + }, + }, + dialog_code_hook:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.dialog_code_hook.new` constructs a new object with attributes and blocks configured for the `dialog_code_hook`\nTerraform sub block.\n\n\n\n**Args**:\n - `enabled` (`bool`): Set the `enabled` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_code_hook` sub block.\n', args=[]), + new( + enabled + ):: std.prune(a={ + enabled: enabled, + }), + }, + fulfillment_code_hook:: { + fulfillment_updates_specification:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.new` constructs a new object with attributes and blocks configured for the `fulfillment_updates_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `timeout_in_seconds` (`number`): Set the `timeout_in_seconds` field on the resulting object. When `null`, the `timeout_in_seconds` field will be omitted from the resulting object.\n - `start_response` (`list[obj]`): Set the `start_response` field on the resulting object. When `null`, the `start_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.new](#fn-fulfillment_code_hookfulfillment_code_hookstart_responsenew) constructor.\n - `update_response` (`list[obj]`): Set the `update_response` field on the resulting object. When `null`, the `update_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.new](#fn-fulfillment_code_hookfulfillment_code_hookupdate_responsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `fulfillment_updates_specification` sub block.\n', args=[]), + new( + active, + start_response=null, + timeout_in_seconds=null, + update_response=null + ):: std.prune(a={ + active: active, + start_response: start_response, + timeout_in_seconds: timeout_in_seconds, + update_response: update_response, + }), + start_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.new` constructs a new object with attributes and blocks configured for the `start_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `delay_in_seconds` (`number`): Set the `delay_in_seconds` field on the resulting object. When `null`, the `delay_in_seconds` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `start_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + delay_in_seconds=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + delay_in_seconds: delay_in_seconds, + message_group: message_group, + }), + }, + update_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.new` constructs a new object with attributes and blocks configured for the `update_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `frequency_in_seconds` (`number`): Set the `frequency_in_seconds` field on the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `update_response` sub block.\n', args=[]), + new( + frequency_in_seconds, + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + frequency_in_seconds: frequency_in_seconds, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.new` constructs a new object with attributes and blocks configured for the `fulfillment_code_hook`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object. When `null`, the `active` field will be omitted from the resulting object.\n - `enabled` (`bool`): Set the `enabled` field on the resulting object.\n - `fulfillment_updates_specification` (`list[obj]`): Set the `fulfillment_updates_specification` field on the resulting object. When `null`, the `fulfillment_updates_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.new](#fn-fulfillment_code_hookfulfillment_updates_specificationnew) constructor.\n - `post_fulfillment_status_specification` (`list[obj]`): Set the `post_fulfillment_status_specification` field on the resulting object. When `null`, the `post_fulfillment_status_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.new](#fn-fulfillment_code_hookpost_fulfillment_status_specificationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `fulfillment_code_hook` sub block.\n', args=[]), + new( + enabled, + active=null, + fulfillment_updates_specification=null, + post_fulfillment_status_specification=null + ):: std.prune(a={ + active: active, + enabled: enabled, + fulfillment_updates_specification: fulfillment_updates_specification, + post_fulfillment_status_specification: post_fulfillment_status_specification, + }), + post_fulfillment_status_specification:: { + failure_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.condition.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.new` constructs a new object with attributes and blocks configured for the `failure_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + failure_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.new` constructs a new object with attributes and blocks configured for the `failure_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + failure_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.new` constructs a new object with attributes and blocks configured for the `failure_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.new` constructs a new object with attributes and blocks configured for the `post_fulfillment_status_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `failure_conditional` (`list[obj]`): Set the `failure_conditional` field on the resulting object. When `null`, the `failure_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.new](#fn-fulfillment_code_hookfulfillment_code_hookfailure_conditionalnew) constructor.\n - `failure_next_step` (`list[obj]`): Set the `failure_next_step` field on the resulting object. When `null`, the `failure_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookfailure_next_stepnew) constructor.\n - `failure_response` (`list[obj]`): Set the `failure_response` field on the resulting object. When `null`, the `failure_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.new](#fn-fulfillment_code_hookfulfillment_code_hookfailure_responsenew) constructor.\n - `success_conditional` (`list[obj]`): Set the `success_conditional` field on the resulting object. When `null`, the `success_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.new](#fn-fulfillment_code_hookfulfillment_code_hooksuccess_conditionalnew) constructor.\n - `success_next_step` (`list[obj]`): Set the `success_next_step` field on the resulting object. When `null`, the `success_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.new](#fn-fulfillment_code_hookfulfillment_code_hooksuccess_next_stepnew) constructor.\n - `success_response` (`list[obj]`): Set the `success_response` field on the resulting object. When `null`, the `success_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.new](#fn-fulfillment_code_hookfulfillment_code_hooksuccess_responsenew) constructor.\n - `timeout_conditional` (`list[obj]`): Set the `timeout_conditional` field on the resulting object. When `null`, the `timeout_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.new](#fn-fulfillment_code_hookfulfillment_code_hooktimeout_conditionalnew) constructor.\n - `timeout_next_step` (`list[obj]`): Set the `timeout_next_step` field on the resulting object. When `null`, the `timeout_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.new](#fn-fulfillment_code_hookfulfillment_code_hooktimeout_next_stepnew) constructor.\n - `timeout_response` (`list[obj]`): Set the `timeout_response` field on the resulting object. When `null`, the `timeout_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.new](#fn-fulfillment_code_hookfulfillment_code_hooktimeout_responsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `post_fulfillment_status_specification` sub block.\n', args=[]), + new( + failure_conditional=null, + failure_next_step=null, + failure_response=null, + success_conditional=null, + success_next_step=null, + success_response=null, + timeout_conditional=null, + timeout_next_step=null, + timeout_response=null + ):: std.prune(a={ + failure_conditional: failure_conditional, + failure_next_step: failure_next_step, + failure_response: failure_response, + success_conditional: success_conditional, + success_next_step: success_next_step, + success_response: success_response, + timeout_conditional: timeout_conditional, + timeout_next_step: timeout_next_step, + timeout_response: timeout_response, + }), + success_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.condition.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.new` constructs a new object with attributes and blocks configured for the `success_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `success_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + success_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.new` constructs a new object with attributes and blocks configured for the `success_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `success_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + success_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.new` constructs a new object with attributes and blocks configured for the `success_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `success_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + timeout_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.condition.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.new` constructs a new object with attributes and blocks configured for the `timeout_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `timeout_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + timeout_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.new` constructs a new object with attributes and blocks configured for the `timeout_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `timeout_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + timeout_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.new` constructs a new object with attributes and blocks configured for the `timeout_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `timeout_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + }, + initial_response_setting:: { + code_hook:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.new` constructs a new object with attributes and blocks configured for the `code_hook`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `enable_code_hook_invocation` (`bool`): Set the `enable_code_hook_invocation` field on the resulting object.\n - `invocation_label` (`string`): Set the `invocation_label` field on the resulting object. When `null`, the `invocation_label` field will be omitted from the resulting object.\n - `post_code_hook_specification` (`list[obj]`): Set the `post_code_hook_specification` field on the resulting object. When `null`, the `post_code_hook_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.new](#fn-initial_response_settinginitial_response_settingpost_code_hook_specificationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `code_hook` sub block.\n', args=[]), + new( + active, + enable_code_hook_invocation, + invocation_label=null, + post_code_hook_specification=null + ):: std.prune(a={ + active: active, + enable_code_hook_invocation: enable_code_hook_invocation, + invocation_label: invocation_label, + post_code_hook_specification: post_code_hook_specification, + }), + post_code_hook_specification:: { + failure_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.new` constructs a new object with attributes and blocks configured for the `failure_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + failure_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.new` constructs a new object with attributes and blocks configured for the `failure_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + failure_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.new` constructs a new object with attributes and blocks configured for the `failure_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `failure_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.new` constructs a new object with attributes and blocks configured for the `post_code_hook_specification`\nTerraform sub block.\n\n\n\n**Args**:\n - `failure_conditional` (`list[obj]`): Set the `failure_conditional` field on the resulting object. When `null`, the `failure_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.new](#fn-initial_response_settinginitial_response_settingcode_hookfailure_conditionalnew) constructor.\n - `failure_next_step` (`list[obj]`): Set the `failure_next_step` field on the resulting object. When `null`, the `failure_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookfailure_next_stepnew) constructor.\n - `failure_response` (`list[obj]`): Set the `failure_response` field on the resulting object. When `null`, the `failure_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.new](#fn-initial_response_settinginitial_response_settingcode_hookfailure_responsenew) constructor.\n - `success_conditional` (`list[obj]`): Set the `success_conditional` field on the resulting object. When `null`, the `success_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.new](#fn-initial_response_settinginitial_response_settingcode_hooksuccess_conditionalnew) constructor.\n - `success_next_step` (`list[obj]`): Set the `success_next_step` field on the resulting object. When `null`, the `success_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.new](#fn-initial_response_settinginitial_response_settingcode_hooksuccess_next_stepnew) constructor.\n - `success_response` (`list[obj]`): Set the `success_response` field on the resulting object. When `null`, the `success_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.new](#fn-initial_response_settinginitial_response_settingcode_hooksuccess_responsenew) constructor.\n - `timeout_conditional` (`list[obj]`): Set the `timeout_conditional` field on the resulting object. When `null`, the `timeout_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.new](#fn-initial_response_settinginitial_response_settingcode_hooktimeout_conditionalnew) constructor.\n - `timeout_next_step` (`list[obj]`): Set the `timeout_next_step` field on the resulting object. When `null`, the `timeout_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.new](#fn-initial_response_settinginitial_response_settingcode_hooktimeout_next_stepnew) constructor.\n - `timeout_response` (`list[obj]`): Set the `timeout_response` field on the resulting object. When `null`, the `timeout_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.new](#fn-initial_response_settinginitial_response_settingcode_hooktimeout_responsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `post_code_hook_specification` sub block.\n', args=[]), + new( + failure_conditional=null, + failure_next_step=null, + failure_response=null, + success_conditional=null, + success_next_step=null, + success_response=null, + timeout_conditional=null, + timeout_next_step=null, + timeout_response=null + ):: std.prune(a={ + failure_conditional: failure_conditional, + failure_next_step: failure_next_step, + failure_response: failure_response, + success_conditional: success_conditional, + success_next_step: success_next_step, + success_response: success_response, + timeout_conditional: timeout_conditional, + timeout_next_step: timeout_next_step, + timeout_response: timeout_response, + }), + success_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.new` constructs a new object with attributes and blocks configured for the `success_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `success_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + success_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.new` constructs a new object with attributes and blocks configured for the `success_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `success_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + success_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.new` constructs a new object with attributes and blocks configured for the `success_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `success_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + timeout_conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.new` constructs a new object with attributes and blocks configured for the `timeout_conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `timeout_conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + timeout_next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.new` constructs a new object with attributes and blocks configured for the `timeout_next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `timeout_next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + timeout_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.new` constructs a new object with attributes and blocks configured for the `timeout_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `timeout_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + }, + conditional:: { + conditional_branch:: { + condition:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition`\nTerraform sub block.\n\n\n\n**Args**:\n - `expression_string` (`string`): Set the `expression_string` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `condition` sub block.\n', args=[]), + new( + expression_string + ):: std.prune(a={ + expression_string: expression_string, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.initial_response_setting.conditional.conditional_branch.condition.new](#fn-initial_response_settinginitial_response_settingconditionalconditionnew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.new](#fn-initial_response_settinginitial_response_settingconditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.new](#fn-initial_response_settinginitial_response_settingconditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional_branch` sub block.\n', args=[]), + new( + name, + condition=null, + next_step=null, + response=null + ):: std.prune(a={ + condition: condition, + name: name, + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + default_branch:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch`\nTerraform sub block.\n\n\n\n**Args**:\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.new](#fn-initial_response_settinginitial_response_settingconditionalnext_stepnew) constructor.\n - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.new](#fn-initial_response_settinginitial_response_settingconditionalresponsenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `default_branch` sub block.\n', args=[]), + new( + next_step=null, + response=null + ):: std.prune(a={ + next_step: next_step, + response: response, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.conditional.new` constructs a new object with attributes and blocks configured for the `conditional`\nTerraform sub block.\n\n\n\n**Args**:\n - `active` (`bool`): Set the `active` field on the resulting object.\n - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.new](#fn-initial_response_settinginitial_response_settingconditional_branchnew) constructor.\n - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.new](#fn-initial_response_settinginitial_response_settingdefault_branchnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `conditional` sub block.\n', args=[]), + new( + active, + conditional_branch=null, + default_branch=null + ):: std.prune(a={ + active: active, + conditional_branch: conditional_branch, + default_branch: default_branch, + }), + }, + initial_response:: { + message_group:: { + message:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupmessagebuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group`\nTerraform sub block.\n\n\n\n**Args**:\n - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessagenew) constructor.\n - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.new](#fn-initial_response_settinginitial_response_settinginitial_responsevariationnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `message_group` sub block.\n', args=[]), + new( + message=null, + variation=null + ):: std.prune(a={ + message: message, + variation: variation, + }), + variation:: { + custom_payload:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `custom_payload` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + image_response_card:: { + button:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button`\nTerraform sub block.\n\n\n\n**Args**:\n - `text` (`string`): Set the `text` field on the resulting object.\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `button` sub block.\n', args=[]), + new( + text, + value + ):: std.prune(a={ + text: text, + value: value, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card`\nTerraform sub block.\n\n\n\n**Args**:\n - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object.\n - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object.\n - `title` (`string`): Set the `title` field on the resulting object.\n - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupvariationbuttonnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `image_response_card` sub block.\n', args=[]), + new( + title, + button=null, + image_url=null, + subtitle=null + ):: std.prune(a={ + button: button, + image_url: image_url, + subtitle: subtitle, + title: title, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation`\nTerraform sub block.\n\n\n\n**Args**:\n - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupcustom_payloadnew) constructor.\n - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupimage_response_cardnew) constructor.\n - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupplain_text_messagenew) constructor.\n - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupssml_messagenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `variation` sub block.\n', args=[]), + new( + custom_payload=null, + image_response_card=null, + plain_text_message=null, + ssml_message=null + ):: std.prune(a={ + custom_payload: custom_payload, + image_response_card: image_response_card, + plain_text_message: plain_text_message, + ssml_message: ssml_message, + }), + plain_text_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `plain_text_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + ssml_message:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message`\nTerraform sub block.\n\n\n\n**Args**:\n - `value` (`string`): Set the `value` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `ssml_message` sub block.\n', args=[]), + new( + value + ):: std.prune(a={ + value: value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.initial_response.new` constructs a new object with attributes and blocks configured for the `initial_response`\nTerraform sub block.\n\n\n\n**Args**:\n - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object.\n - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.new](#fn-initial_response_settinginitial_response_settingmessage_groupnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `initial_response` sub block.\n', args=[]), + new( + allow_interrupt=null, + message_group=null + ):: std.prune(a={ + allow_interrupt: allow_interrupt, + message_group: message_group, + }), + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.new` constructs a new object with attributes and blocks configured for the `initial_response_setting`\nTerraform sub block.\n\n\n\n**Args**:\n - `code_hook` (`list[obj]`): Set the `code_hook` field on the resulting object. When `null`, the `code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.new](#fn-initial_response_settingcode_hooknew) constructor.\n - `conditional` (`list[obj]`): Set the `conditional` field on the resulting object. When `null`, the `conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.new](#fn-initial_response_settingconditionalnew) constructor.\n - `initial_response` (`list[obj]`): Set the `initial_response` field on the resulting object. When `null`, the `initial_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.new](#fn-initial_response_settinginitial_responsenew) constructor.\n - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.next_step.new](#fn-initial_response_settingnext_stepnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `initial_response_setting` sub block.\n', args=[]), + new( + code_hook=null, + conditional=null, + initial_response=null, + next_step=null + ):: std.prune(a={ + code_hook: code_hook, + conditional: conditional, + initial_response: initial_response, + next_step: next_step, + }), + next_step:: { + dialog_action:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action`\nTerraform sub block.\n\n\n\n**Args**:\n - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object.\n - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object.\n - `type` (`string`): Set the `type` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `dialog_action` sub block.\n', args=[]), + new( + type, + slot_to_elicit=null, + suppress_next_message=null + ):: std.prune(a={ + slot_to_elicit: slot_to_elicit, + suppress_next_message: suppress_next_message, + type: type, + }), + }, + intent:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent`\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 - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingnext_stepslotnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `intent` sub block.\n', args=[]), + new( + name=null, + slot=null + ):: std.prune(a={ + name: name, + slot: slot, + }), + slot:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot`\nTerraform sub block.\n\n\n\n**Args**:\n - `map_block_key` (`string`): Set the `map_block_key` field on 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 - `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.lexv2models_intent.initial_response_setting.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingnext_stepintentvaluenew) constructor.\n\n**Returns**:\n - An attribute object that represents the `slot` sub block.\n', args=[]), + new( + map_block_key, + shape=null, + value=null + ):: std.prune(a={ + map_block_key: map_block_key, + shape: shape, + value: value, + }), + value:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value`\nTerraform sub block.\n\n\n\n**Args**:\n - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `value` sub block.\n', args=[]), + new( + interpreted_value=null + ):: std.prune(a={ + interpreted_value: interpreted_value, + }), + }, + }, + }, + '#new':: d.fn(help='\n`aws.lexv2models_intent.initial_response_setting.next_step.new` constructs a new object with attributes and blocks configured for the `next_step`\nTerraform sub block.\n\n\n\n**Args**:\n - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object.\n - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingdialog_actionnew) constructor.\n - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.next_step.intent.new](#fn-initial_response_settinginitial_response_settingintentnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `next_step` sub block.\n', args=[]), + new( + dialog_action=null, + intent=null, + session_attributes=null + ):: std.prune(a={ + dialog_action: dialog_action, + intent: intent, + session_attributes: session_attributes, + }), + }, + }, + input_context:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.input_context.new` constructs a new object with attributes and blocks configured for the `input_context`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `input_context` sub block.\n', args=[]), + new( + name + ):: std.prune(a={ + name: name, + }), + }, + kendra_configuration:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.kendra_configuration.new` constructs a new object with attributes and blocks configured for the `kendra_configuration`\nTerraform sub block.\n\n\n\n**Args**:\n - `kendra_index` (`string`): Set the `kendra_index` field on the resulting object.\n - `query_filter_string` (`string`): Set the `query_filter_string` field on the resulting object. When `null`, the `query_filter_string` field will be omitted from the resulting object.\n - `query_filter_string_enabled` (`bool`): Set the `query_filter_string_enabled` field on the resulting object. When `null`, the `query_filter_string_enabled` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `kendra_configuration` sub block.\n', args=[]), + new( + kendra_index, + query_filter_string=null, + query_filter_string_enabled=null + ):: std.prune(a={ + kendra_index: kendra_index, + query_filter_string: query_filter_string, + query_filter_string_enabled: query_filter_string_enabled, + }), + }, + '#new':: d.fn(help="\n`aws.lexv2models_intent.new` injects a new `aws_lexv2models_intent` 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.lexv2models_intent.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.lexv2models_intent` using the reference:\n\n $._ref.aws_lexv2models_intent.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_lexv2models_intent.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 - `bot_id` (`string`): Set the `bot_id` field on the resulting resource block.\n - `bot_version` (`string`): Set the `bot_version` field on the resulting resource block.\n - `description` (`string`): Set the `description` field on the resulting resource block. When `null`, the `description` field will be omitted from the resulting object.\n - `locale_id` (`string`): Set the `locale_id` field on the resulting resource block.\n - `name` (`string`): Set the `name` field on the resulting resource block.\n - `parent_intent_signature` (`string`): Set the `parent_intent_signature` field on the resulting resource block. When `null`, the `parent_intent_signature` field will be omitted from the resulting object.\n - `closing_setting` (`list[obj]`): Set the `closing_setting` field on the resulting resource block. When `null`, the `closing_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.new](#fn-closing_settingnew) constructor.\n - `confirmation_setting` (`list[obj]`): Set the `confirmation_setting` field on the resulting resource block. When `null`, the `confirmation_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.new](#fn-confirmation_settingnew) constructor.\n - `dialog_code_hook` (`list[obj]`): Set the `dialog_code_hook` field on the resulting resource block. When `null`, the `dialog_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.dialog_code_hook.new](#fn-dialog_code_hooknew) constructor.\n - `fulfillment_code_hook` (`list[obj]`): Set the `fulfillment_code_hook` field on the resulting resource block. When `null`, the `fulfillment_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.new](#fn-fulfillment_code_hooknew) constructor.\n - `initial_response_setting` (`list[obj]`): Set the `initial_response_setting` field on the resulting resource block. When `null`, the `initial_response_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.new](#fn-initial_response_settingnew) constructor.\n - `input_context` (`list[obj]`): Set the `input_context` field on the resulting resource block. When `null`, the `input_context` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.input_context.new](#fn-input_contextnew) constructor.\n - `kendra_configuration` (`list[obj]`): Set the `kendra_configuration` field on the resulting resource block. When `null`, the `kendra_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.kendra_configuration.new](#fn-kendra_configurationnew) constructor.\n - `output_context` (`list[obj]`): Set the `output_context` field on the resulting resource block. When `null`, the `output_context` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.output_context.new](#fn-output_contextnew) constructor.\n - `sample_utterance` (`list[obj]`): Set the `sample_utterance` field on the resulting resource block. When `null`, the `sample_utterance` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.sample_utterance.new](#fn-sample_utterancenew) constructor.\n - `slot_priority` (`list[obj]`): Set the `slot_priority` field on the resulting resource block. When `null`, the `slot_priority` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.slot_priority.new](#fn-slot_prioritynew) 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.lexv2models_intent.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, + bot_id, + bot_version, + locale_id, + name, + closing_setting=null, + confirmation_setting=null, + description=null, + dialog_code_hook=null, + fulfillment_code_hook=null, + initial_response_setting=null, + input_context=null, + kendra_configuration=null, + output_context=null, + parent_intent_signature=null, + sample_utterance=null, + slot_priority=null, + timeouts=null, + _meta={} + ):: tf.withResource( + type='aws_lexv2models_intent', + label=resourceLabel, + attrs=self.newAttrs( + bot_id=bot_id, + bot_version=bot_version, + closing_setting=closing_setting, + confirmation_setting=confirmation_setting, + description=description, + dialog_code_hook=dialog_code_hook, + fulfillment_code_hook=fulfillment_code_hook, + initial_response_setting=initial_response_setting, + input_context=input_context, + kendra_configuration=kendra_configuration, + locale_id=locale_id, + name=name, + output_context=output_context, + parent_intent_signature=parent_intent_signature, + sample_utterance=sample_utterance, + slot_priority=slot_priority, + timeouts=timeouts + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.lexv2models_intent.newAttrs` constructs a new object with attributes and blocks configured for the `lexv2models_intent`\nTerraform resource.\n\nUnlike [aws.lexv2models_intent.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 - `bot_id` (`string`): Set the `bot_id` field on the resulting object.\n - `bot_version` (`string`): Set the `bot_version` field on 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 - `locale_id` (`string`): Set the `locale_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `parent_intent_signature` (`string`): Set the `parent_intent_signature` field on the resulting object. When `null`, the `parent_intent_signature` field will be omitted from the resulting object.\n - `closing_setting` (`list[obj]`): Set the `closing_setting` field on the resulting object. When `null`, the `closing_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.new](#fn-closing_settingnew) constructor.\n - `confirmation_setting` (`list[obj]`): Set the `confirmation_setting` field on the resulting object. When `null`, the `confirmation_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.new](#fn-confirmation_settingnew) constructor.\n - `dialog_code_hook` (`list[obj]`): Set the `dialog_code_hook` field on the resulting object. When `null`, the `dialog_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.dialog_code_hook.new](#fn-dialog_code_hooknew) constructor.\n - `fulfillment_code_hook` (`list[obj]`): Set the `fulfillment_code_hook` field on the resulting object. When `null`, the `fulfillment_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.new](#fn-fulfillment_code_hooknew) constructor.\n - `initial_response_setting` (`list[obj]`): Set the `initial_response_setting` field on the resulting object. When `null`, the `initial_response_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.new](#fn-initial_response_settingnew) constructor.\n - `input_context` (`list[obj]`): Set the `input_context` field on the resulting object. When `null`, the `input_context` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.input_context.new](#fn-input_contextnew) constructor.\n - `kendra_configuration` (`list[obj]`): Set the `kendra_configuration` field on the resulting object. When `null`, the `kendra_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.kendra_configuration.new](#fn-kendra_configurationnew) constructor.\n - `output_context` (`list[obj]`): Set the `output_context` field on the resulting object. When `null`, the `output_context` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.output_context.new](#fn-output_contextnew) constructor.\n - `sample_utterance` (`list[obj]`): Set the `sample_utterance` field on the resulting object. When `null`, the `sample_utterance` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.sample_utterance.new](#fn-sample_utterancenew) constructor.\n - `slot_priority` (`list[obj]`): Set the `slot_priority` field on the resulting object. When `null`, the `slot_priority` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.slot_priority.new](#fn-slot_prioritynew) 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.lexv2models_intent.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 `lexv2models_intent` resource into the root Terraform configuration.\n', args=[]), + newAttrs( + bot_id, + bot_version, + locale_id, + name, + closing_setting=null, + confirmation_setting=null, + description=null, + dialog_code_hook=null, + fulfillment_code_hook=null, + initial_response_setting=null, + input_context=null, + kendra_configuration=null, + output_context=null, + parent_intent_signature=null, + sample_utterance=null, + slot_priority=null, + timeouts=null + ):: std.prune(a={ + bot_id: bot_id, + bot_version: bot_version, + closing_setting: closing_setting, + confirmation_setting: confirmation_setting, + description: description, + dialog_code_hook: dialog_code_hook, + fulfillment_code_hook: fulfillment_code_hook, + initial_response_setting: initial_response_setting, + input_context: input_context, + kendra_configuration: kendra_configuration, + locale_id: locale_id, + name: name, + output_context: output_context, + parent_intent_signature: parent_intent_signature, + sample_utterance: sample_utterance, + slot_priority: slot_priority, + timeouts: timeouts, + }), + output_context:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.output_context.new` constructs a new object with attributes and blocks configured for the `output_context`\nTerraform sub block.\n\n\n\n**Args**:\n - `name` (`string`): Set the `name` field on the resulting object.\n - `time_to_live_in_seconds` (`number`): Set the `time_to_live_in_seconds` field on the resulting object.\n - `turns_to_live` (`number`): Set the `turns_to_live` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `output_context` sub block.\n', args=[]), + new( + name, + time_to_live_in_seconds, + turns_to_live + ):: std.prune(a={ + name: name, + time_to_live_in_seconds: time_to_live_in_seconds, + turns_to_live: turns_to_live, + }), + }, + sample_utterance:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.sample_utterance.new` constructs a new object with attributes and blocks configured for the `sample_utterance`\nTerraform sub block.\n\n\n\n**Args**:\n - `utterance` (`string`): Set the `utterance` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `sample_utterance` sub block.\n', args=[]), + new( + utterance + ):: std.prune(a={ + utterance: utterance, + }), + }, + slot_priority:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.slot_priority.new` constructs a new object with attributes and blocks configured for the `slot_priority`\nTerraform sub block.\n\n\n\n**Args**:\n - `priority` (`number`): Set the `priority` field on the resulting object.\n - `slot_id` (`string`): Set the `slot_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `slot_priority` sub block.\n', args=[]), + new( + priority, + slot_id + ):: std.prune(a={ + priority: priority, + slot_id: slot_id, + }), + }, + timeouts:: { + '#new':: d.fn(help='\n`aws.lexv2models_intent.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`): A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). When `null`, the `create` field will be omitted from the resulting object.\n - `delete` (`string`): A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. When `null`, the `delete` field will be omitted from the resulting object.\n - `update` (`string`): A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). 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, + }), + }, + '#withBotId':: d.fn(help='`aws.string.withBotId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the bot_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 `bot_id` field.\n', args=[]), + withBotId(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + bot_id: value, + }, + }, + }, + }, + '#withBotVersion':: d.fn(help='`aws.string.withBotVersion` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the bot_version 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 `bot_version` field.\n', args=[]), + withBotVersion(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + bot_version: value, + }, + }, + }, + }, + '#withClosingSetting':: d.fn(help='`aws.list[obj].withClosingSetting` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the closing_setting 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].withClosingSettingMixin](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 `closing_setting` field.\n', args=[]), + withClosingSetting(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + closing_setting: value, + }, + }, + }, + }, + '#withClosingSettingMixin':: d.fn(help='`aws.list[obj].withClosingSettingMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the closing_setting 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].withClosingSetting](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 `closing_setting` field.\n', args=[]), + withClosingSettingMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + closing_setting+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withConfirmationSetting':: d.fn(help='`aws.list[obj].withConfirmationSetting` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the confirmation_setting 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].withConfirmationSettingMixin](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 `confirmation_setting` field.\n', args=[]), + withConfirmationSetting(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + confirmation_setting: value, + }, + }, + }, + }, + '#withConfirmationSettingMixin':: d.fn(help='`aws.list[obj].withConfirmationSettingMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the confirmation_setting 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].withConfirmationSetting](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 `confirmation_setting` field.\n', args=[]), + withConfirmationSettingMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + confirmation_setting+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withDescription':: d.fn(help='`aws.string.withDescription` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the 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 `description` field.\n', args=[]), + withDescription(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + description: value, + }, + }, + }, + }, + '#withDialogCodeHook':: d.fn(help='`aws.list[obj].withDialogCodeHook` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the dialog_code_hook 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].withDialogCodeHookMixin](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 `dialog_code_hook` field.\n', args=[]), + withDialogCodeHook(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + dialog_code_hook: value, + }, + }, + }, + }, + '#withDialogCodeHookMixin':: d.fn(help='`aws.list[obj].withDialogCodeHookMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the dialog_code_hook 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].withDialogCodeHook](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 `dialog_code_hook` field.\n', args=[]), + withDialogCodeHookMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + dialog_code_hook+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withFulfillmentCodeHook':: d.fn(help='`aws.list[obj].withFulfillmentCodeHook` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the fulfillment_code_hook 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].withFulfillmentCodeHookMixin](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 `fulfillment_code_hook` field.\n', args=[]), + withFulfillmentCodeHook(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + fulfillment_code_hook: value, + }, + }, + }, + }, + '#withFulfillmentCodeHookMixin':: d.fn(help='`aws.list[obj].withFulfillmentCodeHookMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the fulfillment_code_hook 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].withFulfillmentCodeHook](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 `fulfillment_code_hook` field.\n', args=[]), + withFulfillmentCodeHookMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + fulfillment_code_hook+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withInitialResponseSetting':: d.fn(help='`aws.list[obj].withInitialResponseSetting` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the initial_response_setting 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].withInitialResponseSettingMixin](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 `initial_response_setting` field.\n', args=[]), + withInitialResponseSetting(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + initial_response_setting: value, + }, + }, + }, + }, + '#withInitialResponseSettingMixin':: d.fn(help='`aws.list[obj].withInitialResponseSettingMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the initial_response_setting 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].withInitialResponseSetting](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 `initial_response_setting` field.\n', args=[]), + withInitialResponseSettingMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + initial_response_setting+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withInputContext':: d.fn(help='`aws.list[obj].withInputContext` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the input_context 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].withInputContextMixin](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 `input_context` field.\n', args=[]), + withInputContext(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + input_context: value, + }, + }, + }, + }, + '#withInputContextMixin':: d.fn(help='`aws.list[obj].withInputContextMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the input_context 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].withInputContext](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 `input_context` field.\n', args=[]), + withInputContextMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + input_context+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withKendraConfiguration':: d.fn(help='`aws.list[obj].withKendraConfiguration` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the kendra_configuration 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].withKendraConfigurationMixin](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 `kendra_configuration` field.\n', args=[]), + withKendraConfiguration(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + kendra_configuration: value, + }, + }, + }, + }, + '#withKendraConfigurationMixin':: d.fn(help='`aws.list[obj].withKendraConfigurationMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the kendra_configuration 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].withKendraConfiguration](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 `kendra_configuration` field.\n', args=[]), + withKendraConfigurationMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + kendra_configuration+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withLocaleId':: d.fn(help='`aws.string.withLocaleId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the locale_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 `locale_id` field.\n', args=[]), + withLocaleId(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + locale_id: 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_lexv2models_intent+: { + [resourceLabel]+: { + name: value, + }, + }, + }, + }, + '#withOutputContext':: d.fn(help='`aws.list[obj].withOutputContext` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the output_context 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].withOutputContextMixin](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 `output_context` field.\n', args=[]), + withOutputContext(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + output_context: value, + }, + }, + }, + }, + '#withOutputContextMixin':: d.fn(help='`aws.list[obj].withOutputContextMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the output_context 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].withOutputContext](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 `output_context` field.\n', args=[]), + withOutputContextMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + output_context+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withParentIntentSignature':: d.fn(help='`aws.string.withParentIntentSignature` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the parent_intent_signature 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 `parent_intent_signature` field.\n', args=[]), + withParentIntentSignature(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + parent_intent_signature: value, + }, + }, + }, + }, + '#withSampleUtterance':: d.fn(help='`aws.list[obj].withSampleUtterance` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the sample_utterance 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].withSampleUtteranceMixin](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 `sample_utterance` field.\n', args=[]), + withSampleUtterance(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + sample_utterance: value, + }, + }, + }, + }, + '#withSampleUtteranceMixin':: d.fn(help='`aws.list[obj].withSampleUtteranceMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the sample_utterance 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].withSampleUtterance](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 `sample_utterance` field.\n', args=[]), + withSampleUtteranceMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + sample_utterance+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withSlotPriority':: d.fn(help='`aws.list[obj].withSlotPriority` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the slot_priority 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].withSlotPriorityMixin](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 `slot_priority` field.\n', args=[]), + withSlotPriority(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + slot_priority: value, + }, + }, + }, + }, + '#withSlotPriorityMixin':: d.fn(help='`aws.list[obj].withSlotPriorityMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform resource block to set or update the slot_priority 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].withSlotPriority](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 `slot_priority` field.\n', args=[]), + withSlotPriorityMixin(resourceLabel, value): { + resource+: { + aws_lexv2models_intent+: { + [resourceLabel]+: { + slot_priority+: if std.isArray(v=value) then value else [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_lexv2models_intent+: { + [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_lexv2models_intent+: { + [resourceLabel]+: { + timeouts+: value, + }, + }, + }, + }, +} diff --git a/5.x/_gen/resources/secretsmanager_secret_rotation.libsonnet b/5.x/_gen/resources/secretsmanager_secret_rotation.libsonnet index 8ca47fe1..953d33b9 100644 --- a/5.x/_gen/resources/secretsmanager_secret_rotation.libsonnet +++ b/5.x/_gen/resources/secretsmanager_secret_rotation.libsonnet @@ -2,25 +2,33 @@ 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='secretsmanager_secret_rotation', url='', help='`secretsmanager_secret_rotation` represents the `aws_secretsmanager_secret_rotation` 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.secretsmanager_secret_rotation.new` injects a new `aws_secretsmanager_secret_rotation` 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.secretsmanager_secret_rotation.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.secretsmanager_secret_rotation` using the reference:\n\n $._ref.aws_secretsmanager_secret_rotation.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_secretsmanager_secret_rotation.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 - `rotation_lambda_arn` (`string`): Set the `rotation_lambda_arn` field on the resulting resource block. When `null`, the `rotation_lambda_arn` field will be omitted from the resulting object.\n - `secret_id` (`string`): Set the `secret_id` field on the resulting resource block.\n - `rotation_rules` (`list[obj]`): Set the `rotation_rules` field on the resulting resource block. When `null`, the `rotation_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.secretsmanager_secret_rotation.rotation_rules.new](#fn-rotation_rulesnew) 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.secretsmanager_secret_rotation.new` injects a new `aws_secretsmanager_secret_rotation` 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.secretsmanager_secret_rotation.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.secretsmanager_secret_rotation` using the reference:\n\n $._ref.aws_secretsmanager_secret_rotation.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_secretsmanager_secret_rotation.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 - `rotate_immediately` (`bool`): Set the `rotate_immediately` field on the resulting resource block. When `null`, the `rotate_immediately` field will be omitted from the resulting object.\n - `rotation_lambda_arn` (`string`): Set the `rotation_lambda_arn` field on the resulting resource block. When `null`, the `rotation_lambda_arn` field will be omitted from the resulting object.\n - `secret_id` (`string`): Set the `secret_id` field on the resulting resource block.\n - `rotation_rules` (`list[obj]`): Set the `rotation_rules` field on the resulting resource block. When `null`, the `rotation_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.secretsmanager_secret_rotation.rotation_rules.new](#fn-rotation_rulesnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), new( resourceLabel, secret_id, + rotate_immediately=null, rotation_lambda_arn=null, rotation_rules=null, _meta={} ):: tf.withResource( type='aws_secretsmanager_secret_rotation', label=resourceLabel, - attrs=self.newAttrs(rotation_lambda_arn=rotation_lambda_arn, rotation_rules=rotation_rules, secret_id=secret_id), + attrs=self.newAttrs( + rotate_immediately=rotate_immediately, + rotation_lambda_arn=rotation_lambda_arn, + rotation_rules=rotation_rules, + secret_id=secret_id + ), _meta=_meta ), - '#newAttrs':: d.fn(help='\n`aws.secretsmanager_secret_rotation.newAttrs` constructs a new object with attributes and blocks configured for the `secretsmanager_secret_rotation`\nTerraform resource.\n\nUnlike [aws.secretsmanager_secret_rotation.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 - `rotation_lambda_arn` (`string`): Set the `rotation_lambda_arn` field on the resulting object. When `null`, the `rotation_lambda_arn` field will be omitted from the resulting object.\n - `secret_id` (`string`): Set the `secret_id` field on the resulting object.\n - `rotation_rules` (`list[obj]`): Set the `rotation_rules` field on the resulting object. When `null`, the `rotation_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.secretsmanager_secret_rotation.rotation_rules.new](#fn-rotation_rulesnew) 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 `secretsmanager_secret_rotation` resource into the root Terraform configuration.\n', args=[]), + '#newAttrs':: d.fn(help='\n`aws.secretsmanager_secret_rotation.newAttrs` constructs a new object with attributes and blocks configured for the `secretsmanager_secret_rotation`\nTerraform resource.\n\nUnlike [aws.secretsmanager_secret_rotation.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 - `rotate_immediately` (`bool`): Set the `rotate_immediately` field on the resulting object. When `null`, the `rotate_immediately` field will be omitted from the resulting object.\n - `rotation_lambda_arn` (`string`): Set the `rotation_lambda_arn` field on the resulting object. When `null`, the `rotation_lambda_arn` field will be omitted from the resulting object.\n - `secret_id` (`string`): Set the `secret_id` field on the resulting object.\n - `rotation_rules` (`list[obj]`): Set the `rotation_rules` field on the resulting object. When `null`, the `rotation_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.secretsmanager_secret_rotation.rotation_rules.new](#fn-rotation_rulesnew) 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 `secretsmanager_secret_rotation` resource into the root Terraform configuration.\n', args=[]), newAttrs( secret_id, + rotate_immediately=null, rotation_lambda_arn=null, rotation_rules=null ):: std.prune(a={ + rotate_immediately: rotate_immediately, rotation_lambda_arn: rotation_lambda_arn, rotation_rules: rotation_rules, secret_id: secret_id, @@ -37,6 +45,16 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); schedule_expression: schedule_expression, }), }, + '#withRotateImmediately':: d.fn(help='`aws.bool.withRotateImmediately` constructs a mixin object that can be merged into the `bool`\nTerraform resource block to set or update the rotate_immediately field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`bool`): The value to set for the `rotate_immediately` field.\n', args=[]), + withRotateImmediately(resourceLabel, value): { + resource+: { + aws_secretsmanager_secret_rotation+: { + [resourceLabel]+: { + rotate_immediately: value, + }, + }, + }, + }, '#withRotationLambdaArn':: d.fn(help='`aws.string.withRotationLambdaArn` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the rotation_lambda_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 `rotation_lambda_arn` field.\n', args=[]), withRotationLambdaArn(resourceLabel, value): { resource+: { diff --git a/docs/5.x/README.md b/docs/5.x/README.md index eb18f203..8ef281f4 100644 --- a/docs/5.x/README.md +++ b/docs/5.x/README.md @@ -482,6 +482,8 @@ project. * [egress_only_internet_gateway](egress_only_internet_gateway.md) * [eip](eip.md) * [eip_association](eip_association.md) +* [eks_access_entry](eks_access_entry.md) +* [eks_access_policy_association](eks_access_policy_association.md) * [eks_addon](eks_addon.md) * [eks_cluster](eks_cluster.md) * [eks_fargate_profile](eks_fargate_profile.md) @@ -729,6 +731,7 @@ project. * [lexv2models_bot](lexv2models_bot.md) * [lexv2models_bot_locale](lexv2models_bot_locale.md) * [lexv2models_bot_version](lexv2models_bot_version.md) +* [lexv2models_intent](lexv2models_intent.md) * [licensemanager_association](licensemanager_association.md) * [licensemanager_grant](licensemanager_grant.md) * [licensemanager_grant_accepter](licensemanager_grant_accepter.md) diff --git a/docs/5.x/backup_plan.md b/docs/5.x/backup_plan.md index 3760c82a..c7cc5f4f 100644 --- a/docs/5.x/backup_plan.md +++ b/docs/5.x/backup_plan.md @@ -320,6 +320,7 @@ Terraform sub block. **Args**: - `cold_storage_after` (`number`): Set the `cold_storage_after` field on the resulting object. When `null`, the `cold_storage_after` field will be omitted from the resulting object. - `delete_after` (`number`): Set the `delete_after` field on the resulting object. When `null`, the `delete_after` field will be omitted from the resulting object. + - `opt_in_to_archive_for_supported_resources` (`bool`): Set the `opt_in_to_archive_for_supported_resources` field on the resulting object. When `null`, the `opt_in_to_archive_for_supported_resources` field will be omitted from the resulting object. **Returns**: - An attribute object that represents the `lifecycle` sub block. @@ -344,6 +345,7 @@ Terraform sub block. **Args**: - `cold_storage_after` (`number`): Set the `cold_storage_after` field on the resulting object. When `null`, the `cold_storage_after` field will be omitted from the resulting object. - `delete_after` (`number`): Set the `delete_after` field on the resulting object. When `null`, the `delete_after` field will be omitted from the resulting object. + - `opt_in_to_archive_for_supported_resources` (`bool`): Set the `opt_in_to_archive_for_supported_resources` field on the resulting object. When `null`, the `opt_in_to_archive_for_supported_resources` field will be omitted from the resulting object. **Returns**: - An attribute object that represents the `lifecycle` sub block. diff --git a/docs/5.x/data/eks_access_entry.md b/docs/5.x/data/eks_access_entry.md new file mode 100644 index 00000000..afb94272 --- /dev/null +++ b/docs/5.x/data/eks_access_entry.md @@ -0,0 +1,149 @@ +--- +permalink: /data/eks_access_entry/ +--- + +# data.eks_access_entry + +`eks_access_entry` represents the `aws_eks_access_entry` 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 withClusterName()`](#fn-withclustername) +* [`fn withPrincipalArn()`](#fn-withprincipalarn) +* [`fn withTags()`](#fn-withtags) +* [`fn withTagsAll()`](#fn-withtagsall) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.data.eks_access_entry.new` injects a new `data_aws_eks_access_entry` 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.eks_access_entry.new('some_id') + +You can get the reference to the `id` field of the created `aws.data.eks_access_entry` using the reference: + + $._ref.data_aws_eks_access_entry.some_id.get('id') + +This is the same as directly entering `"${ data_aws_eks_access_entry.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. + - `cluster_name` (`string`): Set the `cluster_name` field on the resulting data source block. + - `principal_arn` (`string`): Set the `principal_arn` field on the resulting data source block. + - `tags` (`obj`): Set the `tags` field on the resulting data source block. When `null`, the `tags` field will be omitted from the resulting object. + - `tags_all` (`obj`): Set the `tags_all` field on the resulting data source block. When `null`, the `tags_all` 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.eks_access_entry.newAttrs` constructs a new object with attributes and blocks configured for the `eks_access_entry` +Terraform data source. + +Unlike [aws.data.eks_access_entry.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**: + - `cluster_name` (`string`): Set the `cluster_name` field on the resulting object. + - `principal_arn` (`string`): Set the `principal_arn` 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. + +**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 `eks_access_entry` data source into the root Terraform configuration. + + +### fn withClusterName + +```ts +withClusterName() +``` + +`aws.string.withClusterName` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the cluster_name field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `cluster_name` field. + + +### fn withPrincipalArn + +```ts +withPrincipalArn() +``` + +`aws.string.withPrincipalArn` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the principal_arn field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `principal_arn` 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 withTagsAll + +```ts +withTagsAll() +``` + +`aws.obj.withTagsAll` constructs a mixin object that can be merged into the `obj` +Terraform data source block to set or update the tags_all field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`obj`): The value to set for the `tags_all` field. diff --git a/docs/5.x/data/index.md b/docs/5.x/data/index.md index e9f82f4f..63511b1f 100644 --- a/docs/5.x/data/index.md +++ b/docs/5.x/data/index.md @@ -202,6 +202,7 @@ permalink: /data/ * [efs_mount_target](efs_mount_target.md) * [eip](eip.md) * [eips](eips.md) +* [eks_access_entry](eks_access_entry.md) * [eks_addon](eks_addon.md) * [eks_addon_version](eks_addon_version.md) * [eks_cluster](eks_cluster.md) diff --git a/docs/5.x/data/secretsmanager_random_password.md b/docs/5.x/data/secretsmanager_random_password.md index 34239108..d15625de 100644 --- a/docs/5.x/data/secretsmanager_random_password.md +++ b/docs/5.x/data/secretsmanager_random_password.md @@ -22,7 +22,6 @@ This package contains functions and utilities for setting up the data source usi * [`fn withExcludeUppercase()`](#fn-withexcludeuppercase) * [`fn withIncludeSpace()`](#fn-withincludespace) * [`fn withPasswordLength()`](#fn-withpasswordlength) -* [`fn withRandomPassword()`](#fn-withrandompassword) * [`fn withRequireEachIncludedType()`](#fn-withrequireeachincludedtype) ## Fields @@ -61,7 +60,6 @@ or `$` to refer to the root object. Instead, make an explicit outer object using - `exclude_uppercase` (`bool`): Set the `exclude_uppercase` field on the resulting data source block. When `null`, the `exclude_uppercase` field will be omitted from the resulting object. - `include_space` (`bool`): Set the `include_space` field on the resulting data source block. When `null`, the `include_space` field will be omitted from the resulting object. - `password_length` (`number`): Set the `password_length` field on the resulting data source block. When `null`, the `password_length` field will be omitted from the resulting object. - - `random_password` (`string`): Set the `random_password` field on the resulting data source block. When `null`, the `random_password` field will be omitted from the resulting object. - `require_each_included_type` (`bool`): Set the `require_each_included_type` field on the resulting data source block. When `null`, the `require_each_included_type` field will be omitted from the resulting object. **Returns**: @@ -93,7 +91,6 @@ injecting into a complete block. - `exclude_uppercase` (`bool`): Set the `exclude_uppercase` field on the resulting object. When `null`, the `exclude_uppercase` field will be omitted from the resulting object. - `include_space` (`bool`): Set the `include_space` field on the resulting object. When `null`, the `include_space` field will be omitted from the resulting object. - `password_length` (`number`): Set the `password_length` field on the resulting object. When `null`, the `password_length` field will be omitted from the resulting object. - - `random_password` (`string`): Set the `random_password` field on the resulting object. When `null`, the `random_password` field will be omitted from the resulting object. - `require_each_included_type` (`bool`): Set the `require_each_included_type` field on the resulting object. When `null`, the `require_each_included_type` field will be omitted from the resulting object. **Returns**: @@ -212,22 +209,6 @@ Terraform data source block to set or update the password_length field. - `value` (`number`): The value to set for the `password_length` field. -### fn withRandomPassword - -```ts -withRandomPassword() -``` - -`aws.string.withRandomPassword` constructs a mixin object that can be merged into the `string` -Terraform data source block to set or update the random_password field. - - - -**Args**: - - `dataSrcLabel` (`string`): The name label of the block to update. - - `value` (`string`): The value to set for the `random_password` field. - - ### fn withRequireEachIncludedType ```ts diff --git a/docs/5.x/data/secretsmanager_secret.md b/docs/5.x/data/secretsmanager_secret.md index 3c6769a8..e95ba510 100644 --- a/docs/5.x/data/secretsmanager_secret.md +++ b/docs/5.x/data/secretsmanager_secret.md @@ -17,6 +17,7 @@ This package contains functions and utilities for setting up the data source usi * [`fn newAttrs()`](#fn-newattrs) * [`fn withArn()`](#fn-witharn) * [`fn withName()`](#fn-withname) +* [`fn withTags()`](#fn-withtags) ## Fields @@ -49,6 +50,7 @@ or `$` to refer to the root object. Instead, make an explicit outer object using - `dataSrcLabel` (`string`): The name label of the block. - `arn` (`string`): Set the `arn` field on the resulting data source block. When `null`, the `arn` field will be omitted from the resulting object. - `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. **Returns**: - A mixin object that injects the new data source into the root Terraform configuration. @@ -74,6 +76,7 @@ injecting into a complete block. **Args**: - `arn` (`string`): Set the `arn` field on the resulting object. When `null`, the `arn` 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. + - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` 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 `secretsmanager_secret` data source into the root Terraform configuration. @@ -109,3 +112,19 @@ 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. diff --git a/docs/5.x/eks_access_entry.md b/docs/5.x/eks_access_entry.md new file mode 100644 index 00000000..7003616f --- /dev/null +++ b/docs/5.x/eks_access_entry.md @@ -0,0 +1,234 @@ +--- +permalink: /eks_access_entry/ +--- + +# eks_access_entry + +`eks_access_entry` represents the `aws_eks_access_entry` 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 withClusterName()`](#fn-withclustername) +* [`fn withKubernetesGroups()`](#fn-withkubernetesgroups) +* [`fn withPrincipalArn()`](#fn-withprincipalarn) +* [`fn withTags()`](#fn-withtags) +* [`fn withTagsAll()`](#fn-withtagsall) +* [`fn withTimeouts()`](#fn-withtimeouts) +* [`fn withTimeoutsMixin()`](#fn-withtimeoutsmixin) +* [`obj timeouts`](#obj-timeouts) + * [`fn new()`](#fn-timeoutsnew) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.eks_access_entry.new` injects a new `aws_eks_access_entry` 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.eks_access_entry.new('some_id') + +You can get the reference to the `id` field of the created `aws.eks_access_entry` using the reference: + + $._ref.aws_eks_access_entry.some_id.get('id') + +This is the same as directly entering `"${ aws_eks_access_entry.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. + - `cluster_name` (`string`): Set the `cluster_name` field on the resulting resource block. + - `kubernetes_groups` (`list`): Set the `kubernetes_groups` field on the resulting resource block. When `null`, the `kubernetes_groups` field will be omitted from the resulting object. + - `principal_arn` (`string`): Set the `principal_arn` 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. + - `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.eks_access_entry.timeouts.new](#fn-timeoutsnew) constructor. + +**Returns**: +- A mixin object that injects the new resource into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.eks_access_entry.newAttrs` constructs a new object with attributes and blocks configured for the `eks_access_entry` +Terraform resource. + +Unlike [aws.eks_access_entry.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**: + - `cluster_name` (`string`): Set the `cluster_name` field on the resulting object. + - `kubernetes_groups` (`list`): Set the `kubernetes_groups` field on the resulting object. When `null`, the `kubernetes_groups` field will be omitted from the resulting object. + - `principal_arn` (`string`): Set the `principal_arn` 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. + - `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.eks_access_entry.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 `eks_access_entry` resource into the root Terraform configuration. + + +### fn withClusterName + +```ts +withClusterName() +``` + +`aws.string.withClusterName` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the cluster_name field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `cluster_name` field. + + +### fn withKubernetesGroups + +```ts +withKubernetesGroups() +``` + +`aws.list.withKubernetesGroups` constructs a mixin object that can be merged into the `list` +Terraform resource block to set or update the kubernetes_groups field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list`): The value to set for the `kubernetes_groups` field. + + +### fn withPrincipalArn + +```ts +withPrincipalArn() +``` + +`aws.string.withPrincipalArn` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the principal_arn field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `principal_arn` 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 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. + + +## obj timeouts + + + +### fn timeouts.new + +```ts +new() +``` + + +`aws.eks_access_entry.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. + +**Returns**: + - An attribute object that represents the `timeouts` sub block. diff --git a/docs/5.x/eks_access_policy_association.md b/docs/5.x/eks_access_policy_association.md new file mode 100644 index 00000000..c45d7f69 --- /dev/null +++ b/docs/5.x/eks_access_policy_association.md @@ -0,0 +1,263 @@ +--- +permalink: /eks_access_policy_association/ +--- + +# eks_access_policy_association + +`eks_access_policy_association` represents the `aws_eks_access_policy_association` 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 withAccessScope()`](#fn-withaccessscope) +* [`fn withAccessScopeMixin()`](#fn-withaccessscopemixin) +* [`fn withClusterName()`](#fn-withclustername) +* [`fn withPolicyArn()`](#fn-withpolicyarn) +* [`fn withPrincipalArn()`](#fn-withprincipalarn) +* [`fn withTimeouts()`](#fn-withtimeouts) +* [`fn withTimeoutsMixin()`](#fn-withtimeoutsmixin) +* [`obj access_scope`](#obj-access_scope) + * [`fn new()`](#fn-access_scopenew) +* [`obj timeouts`](#obj-timeouts) + * [`fn new()`](#fn-timeoutsnew) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.eks_access_policy_association.new` injects a new `aws_eks_access_policy_association` 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.eks_access_policy_association.new('some_id') + +You can get the reference to the `id` field of the created `aws.eks_access_policy_association` using the reference: + + $._ref.aws_eks_access_policy_association.some_id.get('id') + +This is the same as directly entering `"${ aws_eks_access_policy_association.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. + - `cluster_name` (`string`): Set the `cluster_name` field on the resulting resource block. + - `policy_arn` (`string`): Set the `policy_arn` field on the resulting resource block. + - `principal_arn` (`string`): Set the `principal_arn` field on the resulting resource block. + - `access_scope` (`list[obj]`): Set the `access_scope` field on the resulting resource block. When `null`, the `access_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.eks_access_policy_association.access_scope.new](#fn-access_scopenew) 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.eks_access_policy_association.timeouts.new](#fn-timeoutsnew) constructor. + +**Returns**: +- A mixin object that injects the new resource into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.eks_access_policy_association.newAttrs` constructs a new object with attributes and blocks configured for the `eks_access_policy_association` +Terraform resource. + +Unlike [aws.eks_access_policy_association.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**: + - `cluster_name` (`string`): Set the `cluster_name` field on the resulting object. + - `policy_arn` (`string`): Set the `policy_arn` field on the resulting object. + - `principal_arn` (`string`): Set the `principal_arn` field on the resulting object. + - `access_scope` (`list[obj]`): Set the `access_scope` field on the resulting object. When `null`, the `access_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.eks_access_policy_association.access_scope.new](#fn-access_scopenew) 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.eks_access_policy_association.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 `eks_access_policy_association` resource into the root Terraform configuration. + + +### fn withAccessScope + +```ts +withAccessScope() +``` + +`aws.list[obj].withAccessScope` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the access_scope 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].withAccessScopeMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `access_scope` field. + + +### fn withAccessScopeMixin + +```ts +withAccessScopeMixin() +``` + +`aws.list[obj].withAccessScopeMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the access_scope 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].withAccessScope](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `access_scope` field. + + +### fn withClusterName + +```ts +withClusterName() +``` + +`aws.string.withClusterName` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the cluster_name field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `cluster_name` field. + + +### fn withPolicyArn + +```ts +withPolicyArn() +``` + +`aws.string.withPolicyArn` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the policy_arn field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `policy_arn` field. + + +### fn withPrincipalArn + +```ts +withPrincipalArn() +``` + +`aws.string.withPrincipalArn` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the principal_arn field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `principal_arn` 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. + + +## obj access_scope + + + +### fn access_scope.new + +```ts +new() +``` + + +`aws.eks_access_policy_association.access_scope.new` constructs a new object with attributes and blocks configured for the `access_scope` +Terraform sub block. + + + +**Args**: + - `namespaces` (`list`): Set the `namespaces` field on the resulting object. When `null`, the `namespaces` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `access_scope` sub block. + + +## obj timeouts + + + +### fn timeouts.new + +```ts +new() +``` + + +`aws.eks_access_policy_association.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. + +**Returns**: + - An attribute object that represents the `timeouts` sub block. diff --git a/docs/5.x/eks_cluster.md b/docs/5.x/eks_cluster.md index 9df68c05..99f26bc4 100644 --- a/docs/5.x/eks_cluster.md +++ b/docs/5.x/eks_cluster.md @@ -15,6 +15,8 @@ This package contains functions and utilities for setting up the resource using * [`fn new()`](#fn-new) * [`fn newAttrs()`](#fn-newattrs) +* [`fn withAccessConfig()`](#fn-withaccessconfig) +* [`fn withAccessConfigMixin()`](#fn-withaccessconfigmixin) * [`fn withEnabledClusterLogTypes()`](#fn-withenabledclusterlogtypes) * [`fn withEncryptionConfig()`](#fn-withencryptionconfig) * [`fn withEncryptionConfigMixin()`](#fn-withencryptionconfigmixin) @@ -31,6 +33,8 @@ This package contains functions and utilities for setting up the resource using * [`fn withVersion()`](#fn-withversion) * [`fn withVpcConfig()`](#fn-withvpcconfig) * [`fn withVpcConfigMixin()`](#fn-withvpcconfigmixin) +* [`obj access_config`](#obj-access_config) + * [`fn new()`](#fn-access_confignew) * [`obj encryption_config`](#obj-encryption_config) * [`fn new()`](#fn-encryption_confignew) * [`obj encryption_config.provider`](#obj-encryption_configprovider) @@ -81,6 +85,7 @@ or `$` to refer to the root object. Instead, make an explicit outer object using - `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. - `version` (`string`): Set the `version` field on the resulting resource block. When `null`, the `version` field will be omitted from the resulting object. + - `access_config` (`list[obj]`): Set the `access_config` field on the resulting resource block. When `null`, the `access_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.access_config.new](#fn-access_confignew) constructor. - `encryption_config` (`list[obj]`): Set the `encryption_config` field on the resulting resource block. When `null`, the `encryption_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.encryption_config.new](#fn-encryption_confignew) constructor. - `kubernetes_network_config` (`list[obj]`): Set the `kubernetes_network_config` field on the resulting resource block. When `null`, the `kubernetes_network_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.kubernetes_network_config.new](#fn-kubernetes_network_confignew) constructor. - `outpost_config` (`list[obj]`): Set the `outpost_config` field on the resulting resource block. When `null`, the `outpost_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.outpost_config.new](#fn-outpost_confignew) constructor. @@ -115,6 +120,7 @@ injecting into a complete block. - `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. - `version` (`string`): Set the `version` field on the resulting object. When `null`, the `version` field will be omitted from the resulting object. + - `access_config` (`list[obj]`): Set the `access_config` field on the resulting object. When `null`, the `access_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.access_config.new](#fn-access_confignew) constructor. - `encryption_config` (`list[obj]`): Set the `encryption_config` field on the resulting object. When `null`, the `encryption_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.encryption_config.new](#fn-encryption_confignew) constructor. - `kubernetes_network_config` (`list[obj]`): Set the `kubernetes_network_config` field on the resulting object. When `null`, the `kubernetes_network_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.kubernetes_network_config.new](#fn-kubernetes_network_confignew) constructor. - `outpost_config` (`list[obj]`): Set the `outpost_config` field on the resulting object. When `null`, the `outpost_config` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.eks_cluster.outpost_config.new](#fn-outpost_confignew) constructor. @@ -125,6 +131,43 @@ injecting into a complete block. - 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 `eks_cluster` resource into the root Terraform configuration. +### fn withAccessConfig + +```ts +withAccessConfig() +``` + +`aws.list[obj].withAccessConfig` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the access_config 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].withAccessConfigMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `access_config` field. + + +### fn withAccessConfigMixin + +```ts +withAccessConfigMixin() +``` + +`aws.list[obj].withAccessConfigMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the access_config 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].withAccessConfig](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `access_config` field. + + ### fn withEnabledClusterLogTypes ```ts @@ -405,6 +448,30 @@ function. - `value` (`list[obj]`): The value to set for the `vpc_config` field. +## obj access_config + + + +### fn access_config.new + +```ts +new() +``` + + +`aws.eks_cluster.access_config.new` constructs a new object with attributes and blocks configured for the `access_config` +Terraform sub block. + + + +**Args**: + - `authentication_mode` (`string`): Set the `authentication_mode` field on the resulting object. When `null`, the `authentication_mode` field will be omitted from the resulting object. + - `bootstrap_cluster_creator_admin_permissions` (`bool`): Set the `bootstrap_cluster_creator_admin_permissions` field on the resulting object. When `null`, the `bootstrap_cluster_creator_admin_permissions` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `access_config` sub block. + + ## obj encryption_config diff --git a/docs/5.x/lakeformation_resource.md b/docs/5.x/lakeformation_resource.md index 52df22ec..11b2cd1b 100644 --- a/docs/5.x/lakeformation_resource.md +++ b/docs/5.x/lakeformation_resource.md @@ -17,6 +17,7 @@ This package contains functions and utilities for setting up the resource using * [`fn newAttrs()`](#fn-newattrs) * [`fn withArn()`](#fn-witharn) * [`fn withRoleArn()`](#fn-withrolearn) +* [`fn withUseServiceLinkedRole()`](#fn-withuseservicelinkedrole) ## Fields @@ -49,6 +50,7 @@ or `$` to refer to the root object. Instead, make an explicit outer object using - `resourceLabel` (`string`): The name label of the block. - `arn` (`string`): Set the `arn` field on the resulting resource block. - `role_arn` (`string`): Set the `role_arn` field on the resulting resource block. When `null`, the `role_arn` field will be omitted from the resulting object. + - `use_service_linked_role` (`bool`): Set the `use_service_linked_role` field on the resulting resource block. When `null`, the `use_service_linked_role` field will be omitted from the resulting object. **Returns**: - A mixin object that injects the new resource into the root Terraform configuration. @@ -74,6 +76,7 @@ injecting into a complete block. **Args**: - `arn` (`string`): Set the `arn` field on the resulting object. - `role_arn` (`string`): Set the `role_arn` field on the resulting object. When `null`, the `role_arn` field will be omitted from the resulting object. + - `use_service_linked_role` (`bool`): Set the `use_service_linked_role` field on the resulting object. When `null`, the `use_service_linked_role` field will be omitted from 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 `lakeformation_resource` resource into the root Terraform configuration. @@ -109,3 +112,19 @@ 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 withUseServiceLinkedRole + +```ts +withUseServiceLinkedRole() +``` + +`aws.bool.withUseServiceLinkedRole` constructs a mixin object that can be merged into the `bool` +Terraform resource block to set or update the use_service_linked_role field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`bool`): The value to set for the `use_service_linked_role` field. diff --git a/docs/5.x/lexv2models_intent.md b/docs/5.x/lexv2models_intent.md new file mode 100644 index 00000000..a2f944cc --- /dev/null +++ b/docs/5.x/lexv2models_intent.md @@ -0,0 +1,24813 @@ +--- +permalink: /lexv2models_intent/ +--- + +# lexv2models_intent + +`lexv2models_intent` represents the `aws_lexv2models_intent` 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 withBotId()`](#fn-withbotid) +* [`fn withBotVersion()`](#fn-withbotversion) +* [`fn withClosingSetting()`](#fn-withclosingsetting) +* [`fn withClosingSettingMixin()`](#fn-withclosingsettingmixin) +* [`fn withConfirmationSetting()`](#fn-withconfirmationsetting) +* [`fn withConfirmationSettingMixin()`](#fn-withconfirmationsettingmixin) +* [`fn withDescription()`](#fn-withdescription) +* [`fn withDialogCodeHook()`](#fn-withdialogcodehook) +* [`fn withDialogCodeHookMixin()`](#fn-withdialogcodehookmixin) +* [`fn withFulfillmentCodeHook()`](#fn-withfulfillmentcodehook) +* [`fn withFulfillmentCodeHookMixin()`](#fn-withfulfillmentcodehookmixin) +* [`fn withInitialResponseSetting()`](#fn-withinitialresponsesetting) +* [`fn withInitialResponseSettingMixin()`](#fn-withinitialresponsesettingmixin) +* [`fn withInputContext()`](#fn-withinputcontext) +* [`fn withInputContextMixin()`](#fn-withinputcontextmixin) +* [`fn withKendraConfiguration()`](#fn-withkendraconfiguration) +* [`fn withKendraConfigurationMixin()`](#fn-withkendraconfigurationmixin) +* [`fn withLocaleId()`](#fn-withlocaleid) +* [`fn withName()`](#fn-withname) +* [`fn withOutputContext()`](#fn-withoutputcontext) +* [`fn withOutputContextMixin()`](#fn-withoutputcontextmixin) +* [`fn withParentIntentSignature()`](#fn-withparentintentsignature) +* [`fn withSampleUtterance()`](#fn-withsampleutterance) +* [`fn withSampleUtteranceMixin()`](#fn-withsampleutterancemixin) +* [`fn withSlotPriority()`](#fn-withslotpriority) +* [`fn withSlotPriorityMixin()`](#fn-withslotprioritymixin) +* [`fn withTimeouts()`](#fn-withtimeouts) +* [`fn withTimeoutsMixin()`](#fn-withtimeoutsmixin) +* [`obj closing_setting`](#obj-closing_setting) + * [`fn new()`](#fn-closing_settingnew) + * [`obj closing_setting.closing_response`](#obj-closing_settingclosing_response) + * [`fn new()`](#fn-closing_settingclosing_responsenew) + * [`obj closing_setting.closing_response.message_group`](#obj-closing_settingclosing_responsemessage_group) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupnew) + * [`obj closing_setting.closing_response.message_group.message`](#obj-closing_settingclosing_responsemessage_groupmessage) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupmessagenew) + * [`obj closing_setting.closing_response.message_group.message.custom_payload`](#obj-closing_settingclosing_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupmessagecustom_payloadnew) + * [`obj closing_setting.closing_response.message_group.message.image_response_card`](#obj-closing_settingclosing_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupmessageimage_response_cardnew) + * [`obj closing_setting.closing_response.message_group.message.image_response_card.button`](#obj-closing_settingclosing_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj closing_setting.closing_response.message_group.message.plain_text_message`](#obj-closing_settingclosing_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupmessageplain_text_messagenew) + * [`obj closing_setting.closing_response.message_group.message.ssml_message`](#obj-closing_settingclosing_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupmessagessml_messagenew) + * [`obj closing_setting.closing_response.message_group.variation`](#obj-closing_settingclosing_responsemessage_groupvariation) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupvariationnew) + * [`obj closing_setting.closing_response.message_group.variation.custom_payload`](#obj-closing_settingclosing_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupvariationcustom_payloadnew) + * [`obj closing_setting.closing_response.message_group.variation.image_response_card`](#obj-closing_settingclosing_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupvariationimage_response_cardnew) + * [`obj closing_setting.closing_response.message_group.variation.image_response_card.button`](#obj-closing_settingclosing_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj closing_setting.closing_response.message_group.variation.plain_text_message`](#obj-closing_settingclosing_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupvariationplain_text_messagenew) + * [`obj closing_setting.closing_response.message_group.variation.ssml_message`](#obj-closing_settingclosing_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-closing_settingclosing_responsemessage_groupvariationssml_messagenew) + * [`obj closing_setting.conditional`](#obj-closing_settingconditional) + * [`fn new()`](#fn-closing_settingconditionalnew) + * [`obj closing_setting.conditional.conditional_branch`](#obj-closing_settingconditionalconditional_branch) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchnew) + * [`obj closing_setting.conditional.conditional_branch.condition`](#obj-closing_settingconditionalconditional_branchcondition) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchconditionnew) + * [`obj closing_setting.conditional.conditional_branch.next_step`](#obj-closing_settingconditionalconditional_branchnext_step) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchnext_stepnew) + * [`obj closing_setting.conditional.conditional_branch.next_step.dialog_action`](#obj-closing_settingconditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchnext_stepdialog_actionnew) + * [`obj closing_setting.conditional.conditional_branch.next_step.intent`](#obj-closing_settingconditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchnext_stepintentnew) + * [`obj closing_setting.conditional.conditional_branch.next_step.intent.slot`](#obj-closing_settingconditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchnext_stepintentslotnew) + * [`obj closing_setting.conditional.conditional_branch.next_step.intent.slot.value`](#obj-closing_settingconditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj closing_setting.conditional.conditional_branch.response`](#obj-closing_settingconditionalconditional_branchresponse) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsenew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group`](#obj-closing_settingconditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupnew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.message`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.variation`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj closing_setting.conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-closing_settingconditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-closing_settingconditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj closing_setting.conditional.default_branch`](#obj-closing_settingconditionaldefault_branch) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchnew) + * [`obj closing_setting.conditional.default_branch.next_step`](#obj-closing_settingconditionaldefault_branchnext_step) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchnext_stepnew) + * [`obj closing_setting.conditional.default_branch.next_step.dialog_action`](#obj-closing_settingconditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchnext_stepdialog_actionnew) + * [`obj closing_setting.conditional.default_branch.next_step.intent`](#obj-closing_settingconditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchnext_stepintentnew) + * [`obj closing_setting.conditional.default_branch.next_step.intent.slot`](#obj-closing_settingconditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchnext_stepintentslotnew) + * [`obj closing_setting.conditional.default_branch.next_step.intent.slot.value`](#obj-closing_settingconditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj closing_setting.conditional.default_branch.response`](#obj-closing_settingconditionaldefault_branchresponse) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsenew) + * [`obj closing_setting.conditional.default_branch.response.message_group`](#obj-closing_settingconditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupnew) + * [`obj closing_setting.conditional.default_branch.response.message_group.message`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj closing_setting.conditional.default_branch.response.message_group.message.custom_payload`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj closing_setting.conditional.default_branch.response.message_group.message.image_response_card`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj closing_setting.conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj closing_setting.conditional.default_branch.response.message_group.message.plain_text_message`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj closing_setting.conditional.default_branch.response.message_group.message.ssml_message`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj closing_setting.conditional.default_branch.response.message_group.variation`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj closing_setting.conditional.default_branch.response.message_group.variation.custom_payload`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj closing_setting.conditional.default_branch.response.message_group.variation.image_response_card`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj closing_setting.conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj closing_setting.conditional.default_branch.response.message_group.variation.ssml_message`](#obj-closing_settingconditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-closing_settingconditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj closing_setting.next_step`](#obj-closing_settingnext_step) + * [`fn new()`](#fn-closing_settingnext_stepnew) + * [`obj closing_setting.next_step.dialog_action`](#obj-closing_settingnext_stepdialog_action) + * [`fn new()`](#fn-closing_settingnext_stepdialog_actionnew) + * [`obj closing_setting.next_step.intent`](#obj-closing_settingnext_stepintent) + * [`fn new()`](#fn-closing_settingnext_stepintentnew) + * [`obj closing_setting.next_step.intent.slot`](#obj-closing_settingnext_stepintentslot) + * [`fn new()`](#fn-closing_settingnext_stepintentslotnew) + * [`obj closing_setting.next_step.intent.slot.value`](#obj-closing_settingnext_stepintentslotvalue) + * [`fn new()`](#fn-closing_settingnext_stepintentslotvaluenew) +* [`obj confirmation_setting`](#obj-confirmation_setting) + * [`fn new()`](#fn-confirmation_settingnew) + * [`obj confirmation_setting.code_hook`](#obj-confirmation_settingcode_hook) + * [`fn new()`](#fn-confirmation_settingcode_hooknew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification`](#obj-confirmation_settingcode_hookpost_code_hook_specification) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditional) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branch) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchcondition) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchconditionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentslotnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponse) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branch) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentslotnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponse) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_step) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepdialog_actionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepintent) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepintentnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepintentslot) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepintentslotnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepintentslotvaluenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_response) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_group) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditional) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branch) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchcondition) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchconditionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentslotnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponse) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branch) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentslotnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponse) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_step) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepdialog_actionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepintent) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentslot) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentslotnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentslotvaluenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_response) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_group) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditional) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branch) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchcondition) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchconditionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentslotnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponse) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branch) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentslotnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponse) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_step) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepdialog_actionnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepintent) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentslot) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentslotnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentslotvaluenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_response) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_group) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message`](#obj-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.confirmation_conditional`](#obj-confirmation_settingconfirmation_conditional) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch`](#obj-confirmation_settingconfirmation_conditionalconditional_branch) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.condition`](#obj-confirmation_settingconfirmation_conditionalconditional_branchcondition) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchconditionnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.next_step`](#obj-confirmation_settingconfirmation_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchnext_stepnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.next_step.dialog_action`](#obj-confirmation_settingconfirmation_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent`](#obj-confirmation_settingconfirmation_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchnext_stepintentnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot`](#obj-confirmation_settingconfirmation_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchnext_stepintentslotnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.value`](#obj-confirmation_settingconfirmation_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponse) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsenew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.confirmation_conditional.default_branch`](#obj-confirmation_settingconfirmation_conditionaldefault_branch) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.next_step`](#obj-confirmation_settingconfirmation_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchnext_stepnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.next_step.dialog_action`](#obj-confirmation_settingconfirmation_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.next_step.intent`](#obj-confirmation_settingconfirmation_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchnext_stepintentnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot`](#obj-confirmation_settingconfirmation_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchnext_stepintentslotnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.value`](#obj-confirmation_settingconfirmation_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponse) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsenew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.confirmation_next_step`](#obj-confirmation_settingconfirmation_next_step) + * [`fn new()`](#fn-confirmation_settingconfirmation_next_stepnew) + * [`obj confirmation_setting.confirmation_next_step.dialog_action`](#obj-confirmation_settingconfirmation_next_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingconfirmation_next_stepdialog_actionnew) + * [`obj confirmation_setting.confirmation_next_step.intent`](#obj-confirmation_settingconfirmation_next_stepintent) + * [`fn new()`](#fn-confirmation_settingconfirmation_next_stepintentnew) + * [`obj confirmation_setting.confirmation_next_step.intent.slot`](#obj-confirmation_settingconfirmation_next_stepintentslot) + * [`fn new()`](#fn-confirmation_settingconfirmation_next_stepintentslotnew) + * [`obj confirmation_setting.confirmation_next_step.intent.slot.value`](#obj-confirmation_settingconfirmation_next_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingconfirmation_next_stepintentslotvaluenew) + * [`obj confirmation_setting.confirmation_response`](#obj-confirmation_settingconfirmation_response) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsenew) + * [`obj confirmation_setting.confirmation_response.message_group`](#obj-confirmation_settingconfirmation_responsemessage_group) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupnew) + * [`obj confirmation_setting.confirmation_response.message_group.message`](#obj-confirmation_settingconfirmation_responsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupmessagenew) + * [`obj confirmation_setting.confirmation_response.message_group.message.custom_payload`](#obj-confirmation_settingconfirmation_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.confirmation_response.message_group.message.image_response_card`](#obj-confirmation_settingconfirmation_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.confirmation_response.message_group.message.image_response_card.button`](#obj-confirmation_settingconfirmation_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.confirmation_response.message_group.message.plain_text_message`](#obj-confirmation_settingconfirmation_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.confirmation_response.message_group.message.ssml_message`](#obj-confirmation_settingconfirmation_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.confirmation_response.message_group.variation`](#obj-confirmation_settingconfirmation_responsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupvariationnew) + * [`obj confirmation_setting.confirmation_response.message_group.variation.custom_payload`](#obj-confirmation_settingconfirmation_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.confirmation_response.message_group.variation.image_response_card`](#obj-confirmation_settingconfirmation_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.confirmation_response.message_group.variation.image_response_card.button`](#obj-confirmation_settingconfirmation_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.confirmation_response.message_group.variation.plain_text_message`](#obj-confirmation_settingconfirmation_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.confirmation_response.message_group.variation.ssml_message`](#obj-confirmation_settingconfirmation_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingconfirmation_responsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.declination_conditional`](#obj-confirmation_settingdeclination_conditional) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch`](#obj-confirmation_settingdeclination_conditionalconditional_branch) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.condition`](#obj-confirmation_settingdeclination_conditionalconditional_branchcondition) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchconditionnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.next_step`](#obj-confirmation_settingdeclination_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchnext_stepnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.next_step.dialog_action`](#obj-confirmation_settingdeclination_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.next_step.intent`](#obj-confirmation_settingdeclination_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchnext_stepintentnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot`](#obj-confirmation_settingdeclination_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchnext_stepintentslotnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.value`](#obj-confirmation_settingdeclination_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponse) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsenew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.declination_conditional.default_branch`](#obj-confirmation_settingdeclination_conditionaldefault_branch) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchnew) + * [`obj confirmation_setting.declination_conditional.default_branch.next_step`](#obj-confirmation_settingdeclination_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchnext_stepnew) + * [`obj confirmation_setting.declination_conditional.default_branch.next_step.dialog_action`](#obj-confirmation_settingdeclination_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.declination_conditional.default_branch.next_step.intent`](#obj-confirmation_settingdeclination_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchnext_stepintentnew) + * [`obj confirmation_setting.declination_conditional.default_branch.next_step.intent.slot`](#obj-confirmation_settingdeclination_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchnext_stepintentslotnew) + * [`obj confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.value`](#obj-confirmation_settingdeclination_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.declination_conditional.default_branch.response`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponse) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsenew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupnew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.message`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.declination_next_step`](#obj-confirmation_settingdeclination_next_step) + * [`fn new()`](#fn-confirmation_settingdeclination_next_stepnew) + * [`obj confirmation_setting.declination_next_step.dialog_action`](#obj-confirmation_settingdeclination_next_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingdeclination_next_stepdialog_actionnew) + * [`obj confirmation_setting.declination_next_step.intent`](#obj-confirmation_settingdeclination_next_stepintent) + * [`fn new()`](#fn-confirmation_settingdeclination_next_stepintentnew) + * [`obj confirmation_setting.declination_next_step.intent.slot`](#obj-confirmation_settingdeclination_next_stepintentslot) + * [`fn new()`](#fn-confirmation_settingdeclination_next_stepintentslotnew) + * [`obj confirmation_setting.declination_next_step.intent.slot.value`](#obj-confirmation_settingdeclination_next_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingdeclination_next_stepintentslotvaluenew) + * [`obj confirmation_setting.declination_response`](#obj-confirmation_settingdeclination_response) + * [`fn new()`](#fn-confirmation_settingdeclination_responsenew) + * [`obj confirmation_setting.declination_response.message_group`](#obj-confirmation_settingdeclination_responsemessage_group) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupnew) + * [`obj confirmation_setting.declination_response.message_group.message`](#obj-confirmation_settingdeclination_responsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupmessagenew) + * [`obj confirmation_setting.declination_response.message_group.message.custom_payload`](#obj-confirmation_settingdeclination_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.declination_response.message_group.message.image_response_card`](#obj-confirmation_settingdeclination_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.declination_response.message_group.message.image_response_card.button`](#obj-confirmation_settingdeclination_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.declination_response.message_group.message.plain_text_message`](#obj-confirmation_settingdeclination_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.declination_response.message_group.message.ssml_message`](#obj-confirmation_settingdeclination_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.declination_response.message_group.variation`](#obj-confirmation_settingdeclination_responsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupvariationnew) + * [`obj confirmation_setting.declination_response.message_group.variation.custom_payload`](#obj-confirmation_settingdeclination_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.declination_response.message_group.variation.image_response_card`](#obj-confirmation_settingdeclination_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.declination_response.message_group.variation.image_response_card.button`](#obj-confirmation_settingdeclination_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.declination_response.message_group.variation.plain_text_message`](#obj-confirmation_settingdeclination_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.declination_response.message_group.variation.ssml_message`](#obj-confirmation_settingdeclination_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingdeclination_responsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.elicitation_code_hook`](#obj-confirmation_settingelicitation_code_hook) + * [`fn new()`](#fn-confirmation_settingelicitation_code_hooknew) + * [`obj confirmation_setting.failure_conditional`](#obj-confirmation_settingfailure_conditional) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch`](#obj-confirmation_settingfailure_conditionalconditional_branch) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.condition`](#obj-confirmation_settingfailure_conditionalconditional_branchcondition) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchconditionnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.next_step`](#obj-confirmation_settingfailure_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchnext_stepnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.next_step.dialog_action`](#obj-confirmation_settingfailure_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.next_step.intent`](#obj-confirmation_settingfailure_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchnext_stepintentnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot`](#obj-confirmation_settingfailure_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchnext_stepintentslotnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.value`](#obj-confirmation_settingfailure_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response`](#obj-confirmation_settingfailure_conditionalconditional_branchresponse) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsenew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.failure_conditional.default_branch`](#obj-confirmation_settingfailure_conditionaldefault_branch) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchnew) + * [`obj confirmation_setting.failure_conditional.default_branch.next_step`](#obj-confirmation_settingfailure_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchnext_stepnew) + * [`obj confirmation_setting.failure_conditional.default_branch.next_step.dialog_action`](#obj-confirmation_settingfailure_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj confirmation_setting.failure_conditional.default_branch.next_step.intent`](#obj-confirmation_settingfailure_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchnext_stepintentnew) + * [`obj confirmation_setting.failure_conditional.default_branch.next_step.intent.slot`](#obj-confirmation_settingfailure_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchnext_stepintentslotnew) + * [`obj confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.value`](#obj-confirmation_settingfailure_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj confirmation_setting.failure_conditional.default_branch.response`](#obj-confirmation_settingfailure_conditionaldefault_branchresponse) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsenew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupnew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.message`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.custom_payload`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.ssml_message`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.failure_next_step`](#obj-confirmation_settingfailure_next_step) + * [`fn new()`](#fn-confirmation_settingfailure_next_stepnew) + * [`obj confirmation_setting.failure_next_step.dialog_action`](#obj-confirmation_settingfailure_next_stepdialog_action) + * [`fn new()`](#fn-confirmation_settingfailure_next_stepdialog_actionnew) + * [`obj confirmation_setting.failure_next_step.intent`](#obj-confirmation_settingfailure_next_stepintent) + * [`fn new()`](#fn-confirmation_settingfailure_next_stepintentnew) + * [`obj confirmation_setting.failure_next_step.intent.slot`](#obj-confirmation_settingfailure_next_stepintentslot) + * [`fn new()`](#fn-confirmation_settingfailure_next_stepintentslotnew) + * [`obj confirmation_setting.failure_next_step.intent.slot.value`](#obj-confirmation_settingfailure_next_stepintentslotvalue) + * [`fn new()`](#fn-confirmation_settingfailure_next_stepintentslotvaluenew) + * [`obj confirmation_setting.failure_response`](#obj-confirmation_settingfailure_response) + * [`fn new()`](#fn-confirmation_settingfailure_responsenew) + * [`obj confirmation_setting.failure_response.message_group`](#obj-confirmation_settingfailure_responsemessage_group) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupnew) + * [`obj confirmation_setting.failure_response.message_group.message`](#obj-confirmation_settingfailure_responsemessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupmessagenew) + * [`obj confirmation_setting.failure_response.message_group.message.custom_payload`](#obj-confirmation_settingfailure_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.failure_response.message_group.message.image_response_card`](#obj-confirmation_settingfailure_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.failure_response.message_group.message.image_response_card.button`](#obj-confirmation_settingfailure_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.failure_response.message_group.message.plain_text_message`](#obj-confirmation_settingfailure_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.failure_response.message_group.message.ssml_message`](#obj-confirmation_settingfailure_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.failure_response.message_group.variation`](#obj-confirmation_settingfailure_responsemessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupvariationnew) + * [`obj confirmation_setting.failure_response.message_group.variation.custom_payload`](#obj-confirmation_settingfailure_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.failure_response.message_group.variation.image_response_card`](#obj-confirmation_settingfailure_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.failure_response.message_group.variation.image_response_card.button`](#obj-confirmation_settingfailure_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.failure_response.message_group.variation.plain_text_message`](#obj-confirmation_settingfailure_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.failure_response.message_group.variation.ssml_message`](#obj-confirmation_settingfailure_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingfailure_responsemessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.prompt_specification`](#obj-confirmation_settingprompt_specification) + * [`fn new()`](#fn-confirmation_settingprompt_specificationnew) + * [`obj confirmation_setting.prompt_specification.message_group`](#obj-confirmation_settingprompt_specificationmessage_group) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupnew) + * [`obj confirmation_setting.prompt_specification.message_group.message`](#obj-confirmation_settingprompt_specificationmessage_groupmessage) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupmessagenew) + * [`obj confirmation_setting.prompt_specification.message_group.message.custom_payload`](#obj-confirmation_settingprompt_specificationmessage_groupmessagecustom_payload) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupmessagecustom_payloadnew) + * [`obj confirmation_setting.prompt_specification.message_group.message.image_response_card`](#obj-confirmation_settingprompt_specificationmessage_groupmessageimage_response_card) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupmessageimage_response_cardnew) + * [`obj confirmation_setting.prompt_specification.message_group.message.image_response_card.button`](#obj-confirmation_settingprompt_specificationmessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupmessageimage_response_cardbuttonnew) + * [`obj confirmation_setting.prompt_specification.message_group.message.plain_text_message`](#obj-confirmation_settingprompt_specificationmessage_groupmessageplain_text_message) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupmessageplain_text_messagenew) + * [`obj confirmation_setting.prompt_specification.message_group.message.ssml_message`](#obj-confirmation_settingprompt_specificationmessage_groupmessagessml_message) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupmessagessml_messagenew) + * [`obj confirmation_setting.prompt_specification.message_group.variation`](#obj-confirmation_settingprompt_specificationmessage_groupvariation) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupvariationnew) + * [`obj confirmation_setting.prompt_specification.message_group.variation.custom_payload`](#obj-confirmation_settingprompt_specificationmessage_groupvariationcustom_payload) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupvariationcustom_payloadnew) + * [`obj confirmation_setting.prompt_specification.message_group.variation.image_response_card`](#obj-confirmation_settingprompt_specificationmessage_groupvariationimage_response_card) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupvariationimage_response_cardnew) + * [`obj confirmation_setting.prompt_specification.message_group.variation.image_response_card.button`](#obj-confirmation_settingprompt_specificationmessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupvariationimage_response_cardbuttonnew) + * [`obj confirmation_setting.prompt_specification.message_group.variation.plain_text_message`](#obj-confirmation_settingprompt_specificationmessage_groupvariationplain_text_message) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupvariationplain_text_messagenew) + * [`obj confirmation_setting.prompt_specification.message_group.variation.ssml_message`](#obj-confirmation_settingprompt_specificationmessage_groupvariationssml_message) + * [`fn new()`](#fn-confirmation_settingprompt_specificationmessage_groupvariationssml_messagenew) + * [`obj confirmation_setting.prompt_specification.prompt_attempts_specification`](#obj-confirmation_settingprompt_specificationprompt_attempts_specification) + * [`fn new()`](#fn-confirmation_settingprompt_specificationprompt_attempts_specificationnew) + * [`obj confirmation_setting.prompt_specification.prompt_attempts_specification.allowed_input_types`](#obj-confirmation_settingprompt_specificationprompt_attempts_specificationallowed_input_types) + * [`fn new()`](#fn-confirmation_settingprompt_specificationprompt_attempts_specificationallowed_input_typesnew) + * [`obj confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification`](#obj-confirmation_settingprompt_specificationprompt_attempts_specificationaudio_and_dtmf_input_specification) + * [`fn new()`](#fn-confirmation_settingprompt_specificationprompt_attempts_specificationaudio_and_dtmf_input_specificationnew) + * [`obj confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.audio_specification`](#obj-confirmation_settingprompt_specificationprompt_attempts_specificationaudio_and_dtmf_input_specificationaudio_specification) + * [`fn new()`](#fn-confirmation_settingprompt_specificationprompt_attempts_specificationaudio_and_dtmf_input_specificationaudio_specificationnew) + * [`obj confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.dtmf_specification`](#obj-confirmation_settingprompt_specificationprompt_attempts_specificationaudio_and_dtmf_input_specificationdtmf_specification) + * [`fn new()`](#fn-confirmation_settingprompt_specificationprompt_attempts_specificationaudio_and_dtmf_input_specificationdtmf_specificationnew) + * [`obj confirmation_setting.prompt_specification.prompt_attempts_specification.text_input_specification`](#obj-confirmation_settingprompt_specificationprompt_attempts_specificationtext_input_specification) + * [`fn new()`](#fn-confirmation_settingprompt_specificationprompt_attempts_specificationtext_input_specificationnew) +* [`obj dialog_code_hook`](#obj-dialog_code_hook) + * [`fn new()`](#fn-dialog_code_hooknew) +* [`obj fulfillment_code_hook`](#obj-fulfillment_code_hook) + * [`fn new()`](#fn-fulfillment_code_hooknew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification`](#obj-fulfillment_code_hookfulfillment_updates_specification) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_response) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.custom_payload`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.ssml_message`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_response) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.custom_payload`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.ssml_message`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification`](#obj-fulfillment_code_hookpost_fulfillment_status_specification) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditional) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branch) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.condition`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchcondition) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchconditionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.dialog_action`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepintentnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepintentslotnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.value`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponse) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branch) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.dialog_action`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepintentnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepintentslotnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.value`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponse) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_step) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.dialog_action`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepdialog_action) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepdialog_actionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepintent) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepintentnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepintentslot) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepintentslotnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.value`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepintentslotvalue) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepintentslotvaluenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_response) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditional) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branch) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.condition`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchcondition) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchconditionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.dialog_action`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepintentnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepintentslotnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.value`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponse) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branch) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.dialog_action`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepintentnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepintentslotnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.value`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponse) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_step) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.dialog_action`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepdialog_action) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepdialog_actionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepintent) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepintentnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepintentslot) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepintentslotnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.value`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepintentslotvalue) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepintentslotvaluenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_response) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditional) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branch) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.condition`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchcondition) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchconditionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.dialog_action`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepintentnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepintentslotnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponse) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branch) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.dialog_action`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepintentnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepintentslotnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.value`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponse) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_step) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.dialog_action`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepdialog_action) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepdialog_actionnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepintent) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepintentnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepintentslot) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepintentslotnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.value`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepintentslotvalue) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepintentslotvaluenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_response) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_group) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessage) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessagecustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessageimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessageplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessagessml_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariation) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.custom_payload`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationcustom_payloadnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationimage_response_cardnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.button`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.plain_text_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationplain_text_messagenew) + * [`obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.ssml_message`](#obj-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-fulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationssml_messagenew) +* [`obj initial_response_setting`](#obj-initial_response_setting) + * [`fn new()`](#fn-initial_response_settingnew) + * [`obj initial_response_setting.code_hook`](#obj-initial_response_settingcode_hook) + * [`fn new()`](#fn-initial_response_settingcode_hooknew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification`](#obj-initial_response_settingcode_hookpost_code_hook_specification) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditional) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branch) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchcondition) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchconditionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentslotnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponse) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branch) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentslotnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponse) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_step) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepdialog_actionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepintent) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepintentnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepintentslot) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepintentslotnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepintentslotvaluenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_response) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_group) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditional) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branch) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchcondition) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchconditionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentslotnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponse) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branch) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentslotnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponse) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_step) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepdialog_actionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepintent) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentslot) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentslotnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentslotvaluenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_response) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_group) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditional) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branch) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchcondition) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchconditionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_step) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepdialog_actionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentslotnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponse) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branch) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_step) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepdialog_actionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentslotnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponse) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_step) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepdialog_actionnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepintent) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentslot) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentslotnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentslotvaluenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_response) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_group) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message`](#obj-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.conditional`](#obj-initial_response_settingconditional) + * [`fn new()`](#fn-initial_response_settingconditionalnew) + * [`obj initial_response_setting.conditional.conditional_branch`](#obj-initial_response_settingconditionalconditional_branch) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchnew) + * [`obj initial_response_setting.conditional.conditional_branch.condition`](#obj-initial_response_settingconditionalconditional_branchcondition) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchconditionnew) + * [`obj initial_response_setting.conditional.conditional_branch.next_step`](#obj-initial_response_settingconditionalconditional_branchnext_step) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchnext_stepnew) + * [`obj initial_response_setting.conditional.conditional_branch.next_step.dialog_action`](#obj-initial_response_settingconditionalconditional_branchnext_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchnext_stepdialog_actionnew) + * [`obj initial_response_setting.conditional.conditional_branch.next_step.intent`](#obj-initial_response_settingconditionalconditional_branchnext_stepintent) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchnext_stepintentnew) + * [`obj initial_response_setting.conditional.conditional_branch.next_step.intent.slot`](#obj-initial_response_settingconditionalconditional_branchnext_stepintentslot) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchnext_stepintentslotnew) + * [`obj initial_response_setting.conditional.conditional_branch.next_step.intent.slot.value`](#obj-initial_response_settingconditionalconditional_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchnext_stepintentslotvaluenew) + * [`obj initial_response_setting.conditional.conditional_branch.response`](#obj-initial_response_settingconditionalconditional_branchresponse) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsenew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_group) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupnew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.message`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupmessagenew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.message.custom_payload`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.message.plain_text_message`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.message.ssml_message`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.variation`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationnew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.custom_payload`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.ssml_message`](#obj-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingconditionalconditional_branchresponsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.conditional.default_branch`](#obj-initial_response_settingconditionaldefault_branch) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchnew) + * [`obj initial_response_setting.conditional.default_branch.next_step`](#obj-initial_response_settingconditionaldefault_branchnext_step) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchnext_stepnew) + * [`obj initial_response_setting.conditional.default_branch.next_step.dialog_action`](#obj-initial_response_settingconditionaldefault_branchnext_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchnext_stepdialog_actionnew) + * [`obj initial_response_setting.conditional.default_branch.next_step.intent`](#obj-initial_response_settingconditionaldefault_branchnext_stepintent) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchnext_stepintentnew) + * [`obj initial_response_setting.conditional.default_branch.next_step.intent.slot`](#obj-initial_response_settingconditionaldefault_branchnext_stepintentslot) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchnext_stepintentslotnew) + * [`obj initial_response_setting.conditional.default_branch.next_step.intent.slot.value`](#obj-initial_response_settingconditionaldefault_branchnext_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchnext_stepintentslotvaluenew) + * [`obj initial_response_setting.conditional.default_branch.response`](#obj-initial_response_settingconditionaldefault_branchresponse) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsenew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_group) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupnew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.message`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupmessagenew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.message.custom_payload`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.button`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.message.plain_text_message`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.message.ssml_message`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.variation`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationnew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.variation.custom_payload`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.button`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.variation.plain_text_message`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.conditional.default_branch.response.message_group.variation.ssml_message`](#obj-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settingconditionaldefault_branchresponsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.initial_response`](#obj-initial_response_settinginitial_response) + * [`fn new()`](#fn-initial_response_settinginitial_responsenew) + * [`obj initial_response_setting.initial_response.message_group`](#obj-initial_response_settinginitial_responsemessage_group) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupnew) + * [`obj initial_response_setting.initial_response.message_group.message`](#obj-initial_response_settinginitial_responsemessage_groupmessage) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupmessagenew) + * [`obj initial_response_setting.initial_response.message_group.message.custom_payload`](#obj-initial_response_settinginitial_responsemessage_groupmessagecustom_payload) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupmessagecustom_payloadnew) + * [`obj initial_response_setting.initial_response.message_group.message.image_response_card`](#obj-initial_response_settinginitial_responsemessage_groupmessageimage_response_card) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupmessageimage_response_cardnew) + * [`obj initial_response_setting.initial_response.message_group.message.image_response_card.button`](#obj-initial_response_settinginitial_responsemessage_groupmessageimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupmessageimage_response_cardbuttonnew) + * [`obj initial_response_setting.initial_response.message_group.message.plain_text_message`](#obj-initial_response_settinginitial_responsemessage_groupmessageplain_text_message) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupmessageplain_text_messagenew) + * [`obj initial_response_setting.initial_response.message_group.message.ssml_message`](#obj-initial_response_settinginitial_responsemessage_groupmessagessml_message) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupmessagessml_messagenew) + * [`obj initial_response_setting.initial_response.message_group.variation`](#obj-initial_response_settinginitial_responsemessage_groupvariation) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupvariationnew) + * [`obj initial_response_setting.initial_response.message_group.variation.custom_payload`](#obj-initial_response_settinginitial_responsemessage_groupvariationcustom_payload) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupvariationcustom_payloadnew) + * [`obj initial_response_setting.initial_response.message_group.variation.image_response_card`](#obj-initial_response_settinginitial_responsemessage_groupvariationimage_response_card) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupvariationimage_response_cardnew) + * [`obj initial_response_setting.initial_response.message_group.variation.image_response_card.button`](#obj-initial_response_settinginitial_responsemessage_groupvariationimage_response_cardbutton) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupvariationimage_response_cardbuttonnew) + * [`obj initial_response_setting.initial_response.message_group.variation.plain_text_message`](#obj-initial_response_settinginitial_responsemessage_groupvariationplain_text_message) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupvariationplain_text_messagenew) + * [`obj initial_response_setting.initial_response.message_group.variation.ssml_message`](#obj-initial_response_settinginitial_responsemessage_groupvariationssml_message) + * [`fn new()`](#fn-initial_response_settinginitial_responsemessage_groupvariationssml_messagenew) + * [`obj initial_response_setting.next_step`](#obj-initial_response_settingnext_step) + * [`fn new()`](#fn-initial_response_settingnext_stepnew) + * [`obj initial_response_setting.next_step.dialog_action`](#obj-initial_response_settingnext_stepdialog_action) + * [`fn new()`](#fn-initial_response_settingnext_stepdialog_actionnew) + * [`obj initial_response_setting.next_step.intent`](#obj-initial_response_settingnext_stepintent) + * [`fn new()`](#fn-initial_response_settingnext_stepintentnew) + * [`obj initial_response_setting.next_step.intent.slot`](#obj-initial_response_settingnext_stepintentslot) + * [`fn new()`](#fn-initial_response_settingnext_stepintentslotnew) + * [`obj initial_response_setting.next_step.intent.slot.value`](#obj-initial_response_settingnext_stepintentslotvalue) + * [`fn new()`](#fn-initial_response_settingnext_stepintentslotvaluenew) +* [`obj input_context`](#obj-input_context) + * [`fn new()`](#fn-input_contextnew) +* [`obj kendra_configuration`](#obj-kendra_configuration) + * [`fn new()`](#fn-kendra_configurationnew) +* [`obj output_context`](#obj-output_context) + * [`fn new()`](#fn-output_contextnew) +* [`obj sample_utterance`](#obj-sample_utterance) + * [`fn new()`](#fn-sample_utterancenew) +* [`obj slot_priority`](#obj-slot_priority) + * [`fn new()`](#fn-slot_prioritynew) +* [`obj timeouts`](#obj-timeouts) + * [`fn new()`](#fn-timeoutsnew) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.lexv2models_intent.new` injects a new `aws_lexv2models_intent` 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.lexv2models_intent.new('some_id') + +You can get the reference to the `id` field of the created `aws.lexv2models_intent` using the reference: + + $._ref.aws_lexv2models_intent.some_id.get('id') + +This is the same as directly entering `"${ aws_lexv2models_intent.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. + - `bot_id` (`string`): Set the `bot_id` field on the resulting resource block. + - `bot_version` (`string`): Set the `bot_version` field on the resulting resource block. + - `description` (`string`): Set the `description` field on the resulting resource block. When `null`, the `description` field will be omitted from the resulting object. + - `locale_id` (`string`): Set the `locale_id` field on the resulting resource block. + - `name` (`string`): Set the `name` field on the resulting resource block. + - `parent_intent_signature` (`string`): Set the `parent_intent_signature` field on the resulting resource block. When `null`, the `parent_intent_signature` field will be omitted from the resulting object. + - `closing_setting` (`list[obj]`): Set the `closing_setting` field on the resulting resource block. When `null`, the `closing_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.new](#fn-closing_settingnew) constructor. + - `confirmation_setting` (`list[obj]`): Set the `confirmation_setting` field on the resulting resource block. When `null`, the `confirmation_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.new](#fn-confirmation_settingnew) constructor. + - `dialog_code_hook` (`list[obj]`): Set the `dialog_code_hook` field on the resulting resource block. When `null`, the `dialog_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.dialog_code_hook.new](#fn-dialog_code_hooknew) constructor. + - `fulfillment_code_hook` (`list[obj]`): Set the `fulfillment_code_hook` field on the resulting resource block. When `null`, the `fulfillment_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.new](#fn-fulfillment_code_hooknew) constructor. + - `initial_response_setting` (`list[obj]`): Set the `initial_response_setting` field on the resulting resource block. When `null`, the `initial_response_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.new](#fn-initial_response_settingnew) constructor. + - `input_context` (`list[obj]`): Set the `input_context` field on the resulting resource block. When `null`, the `input_context` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.input_context.new](#fn-input_contextnew) constructor. + - `kendra_configuration` (`list[obj]`): Set the `kendra_configuration` field on the resulting resource block. When `null`, the `kendra_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.kendra_configuration.new](#fn-kendra_configurationnew) constructor. + - `output_context` (`list[obj]`): Set the `output_context` field on the resulting resource block. When `null`, the `output_context` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.output_context.new](#fn-output_contextnew) constructor. + - `sample_utterance` (`list[obj]`): Set the `sample_utterance` field on the resulting resource block. When `null`, the `sample_utterance` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.sample_utterance.new](#fn-sample_utterancenew) constructor. + - `slot_priority` (`list[obj]`): Set the `slot_priority` field on the resulting resource block. When `null`, the `slot_priority` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.slot_priority.new](#fn-slot_prioritynew) 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.lexv2models_intent.timeouts.new](#fn-timeoutsnew) constructor. + +**Returns**: +- A mixin object that injects the new resource into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.lexv2models_intent.newAttrs` constructs a new object with attributes and blocks configured for the `lexv2models_intent` +Terraform resource. + +Unlike [aws.lexv2models_intent.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**: + - `bot_id` (`string`): Set the `bot_id` field on the resulting object. + - `bot_version` (`string`): Set the `bot_version` field on 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. + - `locale_id` (`string`): Set the `locale_id` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `parent_intent_signature` (`string`): Set the `parent_intent_signature` field on the resulting object. When `null`, the `parent_intent_signature` field will be omitted from the resulting object. + - `closing_setting` (`list[obj]`): Set the `closing_setting` field on the resulting object. When `null`, the `closing_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.new](#fn-closing_settingnew) constructor. + - `confirmation_setting` (`list[obj]`): Set the `confirmation_setting` field on the resulting object. When `null`, the `confirmation_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.new](#fn-confirmation_settingnew) constructor. + - `dialog_code_hook` (`list[obj]`): Set the `dialog_code_hook` field on the resulting object. When `null`, the `dialog_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.dialog_code_hook.new](#fn-dialog_code_hooknew) constructor. + - `fulfillment_code_hook` (`list[obj]`): Set the `fulfillment_code_hook` field on the resulting object. When `null`, the `fulfillment_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.new](#fn-fulfillment_code_hooknew) constructor. + - `initial_response_setting` (`list[obj]`): Set the `initial_response_setting` field on the resulting object. When `null`, the `initial_response_setting` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.new](#fn-initial_response_settingnew) constructor. + - `input_context` (`list[obj]`): Set the `input_context` field on the resulting object. When `null`, the `input_context` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.input_context.new](#fn-input_contextnew) constructor. + - `kendra_configuration` (`list[obj]`): Set the `kendra_configuration` field on the resulting object. When `null`, the `kendra_configuration` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.kendra_configuration.new](#fn-kendra_configurationnew) constructor. + - `output_context` (`list[obj]`): Set the `output_context` field on the resulting object. When `null`, the `output_context` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.output_context.new](#fn-output_contextnew) constructor. + - `sample_utterance` (`list[obj]`): Set the `sample_utterance` field on the resulting object. When `null`, the `sample_utterance` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.sample_utterance.new](#fn-sample_utterancenew) constructor. + - `slot_priority` (`list[obj]`): Set the `slot_priority` field on the resulting object. When `null`, the `slot_priority` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.slot_priority.new](#fn-slot_prioritynew) 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.lexv2models_intent.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 `lexv2models_intent` resource into the root Terraform configuration. + + +### fn withBotId + +```ts +withBotId() +``` + +`aws.string.withBotId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the bot_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `bot_id` field. + + +### fn withBotVersion + +```ts +withBotVersion() +``` + +`aws.string.withBotVersion` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the bot_version field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `bot_version` field. + + +### fn withClosingSetting + +```ts +withClosingSetting() +``` + +`aws.list[obj].withClosingSetting` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the closing_setting 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].withClosingSettingMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `closing_setting` field. + + +### fn withClosingSettingMixin + +```ts +withClosingSettingMixin() +``` + +`aws.list[obj].withClosingSettingMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the closing_setting 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].withClosingSetting](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `closing_setting` field. + + +### fn withConfirmationSetting + +```ts +withConfirmationSetting() +``` + +`aws.list[obj].withConfirmationSetting` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the confirmation_setting 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].withConfirmationSettingMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `confirmation_setting` field. + + +### fn withConfirmationSettingMixin + +```ts +withConfirmationSettingMixin() +``` + +`aws.list[obj].withConfirmationSettingMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the confirmation_setting 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].withConfirmationSetting](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `confirmation_setting` field. + + +### fn withDescription + +```ts +withDescription() +``` + +`aws.string.withDescription` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the description field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `description` field. + + +### fn withDialogCodeHook + +```ts +withDialogCodeHook() +``` + +`aws.list[obj].withDialogCodeHook` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the dialog_code_hook 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].withDialogCodeHookMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `dialog_code_hook` field. + + +### fn withDialogCodeHookMixin + +```ts +withDialogCodeHookMixin() +``` + +`aws.list[obj].withDialogCodeHookMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the dialog_code_hook 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].withDialogCodeHook](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `dialog_code_hook` field. + + +### fn withFulfillmentCodeHook + +```ts +withFulfillmentCodeHook() +``` + +`aws.list[obj].withFulfillmentCodeHook` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the fulfillment_code_hook 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].withFulfillmentCodeHookMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `fulfillment_code_hook` field. + + +### fn withFulfillmentCodeHookMixin + +```ts +withFulfillmentCodeHookMixin() +``` + +`aws.list[obj].withFulfillmentCodeHookMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the fulfillment_code_hook 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].withFulfillmentCodeHook](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `fulfillment_code_hook` field. + + +### fn withInitialResponseSetting + +```ts +withInitialResponseSetting() +``` + +`aws.list[obj].withInitialResponseSetting` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the initial_response_setting 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].withInitialResponseSettingMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `initial_response_setting` field. + + +### fn withInitialResponseSettingMixin + +```ts +withInitialResponseSettingMixin() +``` + +`aws.list[obj].withInitialResponseSettingMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the initial_response_setting 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].withInitialResponseSetting](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `initial_response_setting` field. + + +### fn withInputContext + +```ts +withInputContext() +``` + +`aws.list[obj].withInputContext` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the input_context 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].withInputContextMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `input_context` field. + + +### fn withInputContextMixin + +```ts +withInputContextMixin() +``` + +`aws.list[obj].withInputContextMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the input_context 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].withInputContext](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `input_context` field. + + +### fn withKendraConfiguration + +```ts +withKendraConfiguration() +``` + +`aws.list[obj].withKendraConfiguration` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the kendra_configuration 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].withKendraConfigurationMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `kendra_configuration` field. + + +### fn withKendraConfigurationMixin + +```ts +withKendraConfigurationMixin() +``` + +`aws.list[obj].withKendraConfigurationMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the kendra_configuration 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].withKendraConfiguration](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `kendra_configuration` field. + + +### fn withLocaleId + +```ts +withLocaleId() +``` + +`aws.string.withLocaleId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the locale_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `locale_id` 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 withOutputContext + +```ts +withOutputContext() +``` + +`aws.list[obj].withOutputContext` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the output_context 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].withOutputContextMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `output_context` field. + + +### fn withOutputContextMixin + +```ts +withOutputContextMixin() +``` + +`aws.list[obj].withOutputContextMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the output_context 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].withOutputContext](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `output_context` field. + + +### fn withParentIntentSignature + +```ts +withParentIntentSignature() +``` + +`aws.string.withParentIntentSignature` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the parent_intent_signature field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `parent_intent_signature` field. + + +### fn withSampleUtterance + +```ts +withSampleUtterance() +``` + +`aws.list[obj].withSampleUtterance` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the sample_utterance 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].withSampleUtteranceMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `sample_utterance` field. + + +### fn withSampleUtteranceMixin + +```ts +withSampleUtteranceMixin() +``` + +`aws.list[obj].withSampleUtteranceMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the sample_utterance 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].withSampleUtterance](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `sample_utterance` field. + + +### fn withSlotPriority + +```ts +withSlotPriority() +``` + +`aws.list[obj].withSlotPriority` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the slot_priority 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].withSlotPriorityMixin](TODO) function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `slot_priority` field. + + +### fn withSlotPriorityMixin + +```ts +withSlotPriorityMixin() +``` + +`aws.list[obj].withSlotPriorityMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform resource block to set or update the slot_priority 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].withSlotPriority](TODO) +function. + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `slot_priority` 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. + + +## obj closing_setting + + + +### fn closing_setting.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.new` constructs a new object with attributes and blocks configured for the `closing_setting` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. When `null`, the `active` field will be omitted from the resulting object. + - `closing_response` (`list[obj]`): Set the `closing_response` field on the resulting object. When `null`, the `closing_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.new](#fn-closing_settingclosing_responsenew) constructor. + - `conditional` (`list[obj]`): Set the `conditional` field on the resulting object. When `null`, the `conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.new](#fn-closing_settingconditionalnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.next_step.new](#fn-closing_settingnext_stepnew) constructor. + +**Returns**: + - An attribute object that represents the `closing_setting` sub block. + + +## obj closing_setting.closing_response + + + +### fn closing_setting.closing_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.new` constructs a new object with attributes and blocks configured for the `closing_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.new](#fn-closing_settingclosing_settingmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `closing_response` sub block. + + +## obj closing_setting.closing_response.message_group + + + +### fn closing_setting.closing_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.new](#fn-closing_settingclosing_settingclosing_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.new](#fn-closing_settingclosing_settingclosing_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj closing_setting.closing_response.message_group.message + + + +### fn closing_setting.closing_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.custom_payload.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.image_response_card.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.plain_text_message.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.ssml_message.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj closing_setting.closing_response.message_group.message.custom_payload + + + +### fn closing_setting.closing_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj closing_setting.closing_response.message_group.message.image_response_card + + + +### fn closing_setting.closing_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.message.image_response_card.button.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj closing_setting.closing_response.message_group.message.image_response_card.button + + + +### fn closing_setting.closing_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj closing_setting.closing_response.message_group.message.plain_text_message + + + +### fn closing_setting.closing_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj closing_setting.closing_response.message_group.message.ssml_message + + + +### fn closing_setting.closing_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj closing_setting.closing_response.message_group.variation + + + +### fn closing_setting.closing_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.custom_payload.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.image_response_card.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.plain_text_message.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.ssml_message.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj closing_setting.closing_response.message_group.variation.custom_payload + + + +### fn closing_setting.closing_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj closing_setting.closing_response.message_group.variation.image_response_card + + + +### fn closing_setting.closing_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.image_response_card.button.new](#fn-closing_settingclosing_settingclosing_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj closing_setting.closing_response.message_group.variation.image_response_card.button + + + +### fn closing_setting.closing_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj closing_setting.closing_response.message_group.variation.plain_text_message + + + +### fn closing_setting.closing_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj closing_setting.closing_response.message_group.variation.ssml_message + + + +### fn closing_setting.closing_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.closing_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj closing_setting.conditional + + + +### fn closing_setting.conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.new` constructs a new object with attributes and blocks configured for the `conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.new](#fn-closing_settingclosing_settingconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.new](#fn-closing_settingclosing_settingdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `conditional` sub block. + + +## obj closing_setting.conditional.conditional_branch + + + +### fn closing_setting.conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.closing_setting.conditional.conditional_branch.condition.new](#fn-closing_settingclosing_settingconditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.new](#fn-closing_settingclosing_settingconditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.new](#fn-closing_settingclosing_settingconditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj closing_setting.conditional.conditional_branch.condition + + + +### fn closing_setting.conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj closing_setting.conditional.conditional_branch.next_step + + + +### fn closing_setting.conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.dialog_action.new](#fn-closing_settingclosing_settingconditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.new](#fn-closing_settingclosing_settingconditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj closing_setting.conditional.conditional_branch.next_step.dialog_action + + + +### fn closing_setting.conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj closing_setting.conditional.conditional_branch.next_step.intent + + + +### fn closing_setting.conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.slot.new](#fn-closing_settingclosing_settingconditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj closing_setting.conditional.conditional_branch.next_step.intent.slot + + + +### fn closing_setting.conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.slot.value.new](#fn-closing_settingclosing_settingconditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj closing_setting.conditional.conditional_branch.next_step.intent.slot.value + + + +### fn closing_setting.conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj closing_setting.conditional.conditional_branch.response + + + +### fn closing_setting.conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.new](#fn-closing_settingclosing_settingconditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.message + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.variation + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-closing_settingclosing_settingconditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj closing_setting.conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn closing_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj closing_setting.conditional.default_branch + + + +### fn closing_setting.conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.new](#fn-closing_settingclosing_settingconditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.new](#fn-closing_settingclosing_settingconditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj closing_setting.conditional.default_branch.next_step + + + +### fn closing_setting.conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.dialog_action.new](#fn-closing_settingclosing_settingconditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.new](#fn-closing_settingclosing_settingconditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj closing_setting.conditional.default_branch.next_step.dialog_action + + + +### fn closing_setting.conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj closing_setting.conditional.default_branch.next_step.intent + + + +### fn closing_setting.conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.slot.new](#fn-closing_settingclosing_settingconditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj closing_setting.conditional.default_branch.next_step.intent.slot + + + +### fn closing_setting.conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.slot.value.new](#fn-closing_settingclosing_settingconditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj closing_setting.conditional.default_branch.next_step.intent.slot.value + + + +### fn closing_setting.conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj closing_setting.conditional.default_branch.response + + + +### fn closing_setting.conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.new](#fn-closing_settingclosing_settingconditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group + + + +### fn closing_setting.conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.message + + + +### fn closing_setting.conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.custom_payload.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.image_response_card.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.ssml_message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.message.custom_payload + + + +### fn closing_setting.conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.message.image_response_card + + + +### fn closing_setting.conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn closing_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn closing_setting.conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.message.ssml_message + + + +### fn closing_setting.conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.variation + + + +### fn closing_setting.conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn closing_setting.conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-closing_settingclosing_settingconditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn closing_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj closing_setting.conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn closing_setting.conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj closing_setting.next_step + + + +### fn closing_setting.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.next_step.dialog_action.new](#fn-closing_settingclosing_settingdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.next_step.intent.new](#fn-closing_settingclosing_settingintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj closing_setting.next_step.dialog_action + + + +### fn closing_setting.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj closing_setting.next_step.intent + + + +### fn closing_setting.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.closing_setting.next_step.intent.slot.new](#fn-closing_settingclosing_settingnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj closing_setting.next_step.intent.slot + + + +### fn closing_setting.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.closing_setting.next_step.intent.slot.value.new](#fn-closing_settingclosing_settingnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj closing_setting.next_step.intent.slot.value + + + +### fn closing_setting.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.closing_setting.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting + + + +### fn confirmation_setting.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.new` constructs a new object with attributes and blocks configured for the `confirmation_setting` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. When `null`, the `active` field will be omitted from the resulting object. + - `code_hook` (`list[obj]`): Set the `code_hook` field on the resulting object. When `null`, the `code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.new](#fn-confirmation_settingcode_hooknew) constructor. + - `confirmation_conditional` (`list[obj]`): Set the `confirmation_conditional` field on the resulting object. When `null`, the `confirmation_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.new](#fn-confirmation_settingconfirmation_conditionalnew) constructor. + - `confirmation_next_step` (`list[obj]`): Set the `confirmation_next_step` field on the resulting object. When `null`, the `confirmation_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_next_step.new](#fn-confirmation_settingconfirmation_next_stepnew) constructor. + - `confirmation_response` (`list[obj]`): Set the `confirmation_response` field on the resulting object. When `null`, the `confirmation_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.new](#fn-confirmation_settingconfirmation_responsenew) constructor. + - `declination_conditional` (`list[obj]`): Set the `declination_conditional` field on the resulting object. When `null`, the `declination_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.new](#fn-confirmation_settingdeclination_conditionalnew) constructor. + - `declination_next_step` (`list[obj]`): Set the `declination_next_step` field on the resulting object. When `null`, the `declination_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_next_step.new](#fn-confirmation_settingdeclination_next_stepnew) constructor. + - `declination_response` (`list[obj]`): Set the `declination_response` field on the resulting object. When `null`, the `declination_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.new](#fn-confirmation_settingdeclination_responsenew) constructor. + - `elicitation_code_hook` (`list[obj]`): Set the `elicitation_code_hook` field on the resulting object. When `null`, the `elicitation_code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.elicitation_code_hook.new](#fn-confirmation_settingelicitation_code_hooknew) constructor. + - `failure_conditional` (`list[obj]`): Set the `failure_conditional` field on the resulting object. When `null`, the `failure_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.new](#fn-confirmation_settingfailure_conditionalnew) constructor. + - `failure_next_step` (`list[obj]`): Set the `failure_next_step` field on the resulting object. When `null`, the `failure_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_next_step.new](#fn-confirmation_settingfailure_next_stepnew) constructor. + - `failure_response` (`list[obj]`): Set the `failure_response` field on the resulting object. When `null`, the `failure_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.new](#fn-confirmation_settingfailure_responsenew) constructor. + - `prompt_specification` (`list[obj]`): Set the `prompt_specification` field on the resulting object. When `null`, the `prompt_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.new](#fn-confirmation_settingprompt_specificationnew) constructor. + +**Returns**: + - An attribute object that represents the `confirmation_setting` sub block. + + +## obj confirmation_setting.code_hook + + + +### fn confirmation_setting.code_hook.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.new` constructs a new object with attributes and blocks configured for the `code_hook` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `enable_code_hook_invocation` (`bool`): Set the `enable_code_hook_invocation` field on the resulting object. + - `invocation_label` (`string`): Set the `invocation_label` field on the resulting object. When `null`, the `invocation_label` field will be omitted from the resulting object. + - `post_code_hook_specification` (`list[obj]`): Set the `post_code_hook_specification` field on the resulting object. When `null`, the `post_code_hook_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.new](#fn-confirmation_settingconfirmation_settingpost_code_hook_specificationnew) constructor. + +**Returns**: + - An attribute object that represents the `code_hook` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.new` constructs a new object with attributes and blocks configured for the `post_code_hook_specification` +Terraform sub block. + + + +**Args**: + - `failure_conditional` (`list[obj]`): Set the `failure_conditional` field on the resulting object. When `null`, the `failure_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.new](#fn-confirmation_settingconfirmation_settingcode_hookfailure_conditionalnew) constructor. + - `failure_next_step` (`list[obj]`): Set the `failure_next_step` field on the resulting object. When `null`, the `failure_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookfailure_next_stepnew) constructor. + - `failure_response` (`list[obj]`): Set the `failure_response` field on the resulting object. When `null`, the `failure_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.new](#fn-confirmation_settingconfirmation_settingcode_hookfailure_responsenew) constructor. + - `success_conditional` (`list[obj]`): Set the `success_conditional` field on the resulting object. When `null`, the `success_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.new](#fn-confirmation_settingconfirmation_settingcode_hooksuccess_conditionalnew) constructor. + - `success_next_step` (`list[obj]`): Set the `success_next_step` field on the resulting object. When `null`, the `success_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.new](#fn-confirmation_settingconfirmation_settingcode_hooksuccess_next_stepnew) constructor. + - `success_response` (`list[obj]`): Set the `success_response` field on the resulting object. When `null`, the `success_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.new](#fn-confirmation_settingconfirmation_settingcode_hooksuccess_responsenew) constructor. + - `timeout_conditional` (`list[obj]`): Set the `timeout_conditional` field on the resulting object. When `null`, the `timeout_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.new](#fn-confirmation_settingconfirmation_settingcode_hooktimeout_conditionalnew) constructor. + - `timeout_next_step` (`list[obj]`): Set the `timeout_next_step` field on the resulting object. When `null`, the `timeout_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.new](#fn-confirmation_settingconfirmation_settingcode_hooktimeout_next_stepnew) constructor. + - `timeout_response` (`list[obj]`): Set the `timeout_response` field on the resulting object. When `null`, the `timeout_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.new](#fn-confirmation_settingconfirmation_settingcode_hooktimeout_responsenew) constructor. + +**Returns**: + - An attribute object that represents the `post_code_hook_specification` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.new` constructs a new object with attributes and blocks configured for the `failure_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_conditional` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.new` constructs a new object with attributes and blocks configured for the `failure_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationintentnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_next_step` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.new` constructs a new object with attributes and blocks configured for the `failure_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_response` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.new` constructs a new object with attributes and blocks configured for the `success_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `success_conditional` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.new` constructs a new object with attributes and blocks configured for the `success_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationintentnew) constructor. + +**Returns**: + - An attribute object that represents the `success_next_step` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.new` constructs a new object with attributes and blocks configured for the `success_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `success_response` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.new` constructs a new object with attributes and blocks configured for the `timeout_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `timeout_conditional` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.new` constructs a new object with attributes and blocks configured for the `timeout_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationintentnew) constructor. + +**Returns**: + - An attribute object that represents the `timeout_next_step` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.new` constructs a new object with attributes and blocks configured for the `timeout_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `timeout_response` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message + + + +### fn confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.confirmation_conditional + + + +### fn confirmation_setting.confirmation_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.new` constructs a new object with attributes and blocks configured for the `confirmation_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `confirmation_conditional` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.condition + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.next_step + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.next_step.dialog_action + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch + + + +### fn confirmation_setting.confirmation_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.next_step + + + +### fn confirmation_setting.confirmation_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.next_step.dialog_action + + + +### fn confirmation_setting.confirmation_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.next_step.intent + + + +### fn confirmation_setting.confirmation_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot + + + +### fn confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.confirmation_next_step + + + +### fn confirmation_setting.confirmation_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.new` constructs a new object with attributes and blocks configured for the `confirmation_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.new](#fn-confirmation_settingconfirmation_settingintentnew) constructor. + +**Returns**: + - An attribute object that represents the `confirmation_next_step` sub block. + + +## obj confirmation_setting.confirmation_next_step.dialog_action + + + +### fn confirmation_setting.confirmation_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.confirmation_next_step.intent + + + +### fn confirmation_setting.confirmation_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingconfirmation_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.confirmation_next_step.intent.slot + + + +### fn confirmation_setting.confirmation_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingconfirmation_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.confirmation_next_step.intent.slot.value + + + +### fn confirmation_setting.confirmation_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.confirmation_response + + + +### fn confirmation_setting.confirmation_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.new` constructs a new object with attributes and blocks configured for the `confirmation_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.new](#fn-confirmation_settingconfirmation_settingmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `confirmation_response` sub block. + + +## obj confirmation_setting.confirmation_response.message_group + + + +### fn confirmation_setting.confirmation_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.message + + + +### fn confirmation_setting.confirmation_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.message.custom_payload + + + +### fn confirmation_setting.confirmation_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.message.image_response_card + + + +### fn confirmation_setting.confirmation_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.confirmation_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.message.plain_text_message + + + +### fn confirmation_setting.confirmation_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.message.ssml_message + + + +### fn confirmation_setting.confirmation_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.variation + + + +### fn confirmation_setting.confirmation_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.variation.custom_payload + + + +### fn confirmation_setting.confirmation_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.variation.image_response_card + + + +### fn confirmation_setting.confirmation_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingconfirmation_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.confirmation_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.confirmation_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.confirmation_response.message_group.variation.ssml_message + + + +### fn confirmation_setting.confirmation_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.confirmation_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.declination_conditional + + + +### fn confirmation_setting.declination_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.new` constructs a new object with attributes and blocks configured for the `declination_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `declination_conditional` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch + + + +### fn confirmation_setting.declination_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.condition + + + +### fn confirmation_setting.declination_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.next_step + + + +### fn confirmation_setting.declination_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.next_step.dialog_action + + + +### fn confirmation_setting.declination_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.next_step.intent + + + +### fn confirmation_setting.declination_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot + + + +### fn confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch + + + +### fn confirmation_setting.declination_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.next_step + + + +### fn confirmation_setting.declination_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.next_step.dialog_action + + + +### fn confirmation_setting.declination_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.next_step.intent + + + +### fn confirmation_setting.declination_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.next_step.intent.slot + + + +### fn confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response + + + +### fn confirmation_setting.declination_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.message + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.declination_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.declination_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.declination_next_step + + + +### fn confirmation_setting.declination_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_next_step.new` constructs a new object with attributes and blocks configured for the `declination_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.new](#fn-confirmation_settingconfirmation_settingintentnew) constructor. + +**Returns**: + - An attribute object that represents the `declination_next_step` sub block. + + +## obj confirmation_setting.declination_next_step.dialog_action + + + +### fn confirmation_setting.declination_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.declination_next_step.intent + + + +### fn confirmation_setting.declination_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingdeclination_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.declination_next_step.intent.slot + + + +### fn confirmation_setting.declination_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.declination_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingdeclination_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.declination_next_step.intent.slot.value + + + +### fn confirmation_setting.declination_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.declination_response + + + +### fn confirmation_setting.declination_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.new` constructs a new object with attributes and blocks configured for the `declination_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.new](#fn-confirmation_settingconfirmation_settingmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `declination_response` sub block. + + +## obj confirmation_setting.declination_response.message_group + + + +### fn confirmation_setting.declination_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingdeclination_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.declination_response.message_group.message + + + +### fn confirmation_setting.declination_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.declination_response.message_group.message.custom_payload + + + +### fn confirmation_setting.declination_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.declination_response.message_group.message.image_response_card + + + +### fn confirmation_setting.declination_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.declination_response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.declination_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.declination_response.message_group.message.plain_text_message + + + +### fn confirmation_setting.declination_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.declination_response.message_group.message.ssml_message + + + +### fn confirmation_setting.declination_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.declination_response.message_group.variation + + + +### fn confirmation_setting.declination_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.declination_response.message_group.variation.custom_payload + + + +### fn confirmation_setting.declination_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.declination_response.message_group.variation.image_response_card + + + +### fn confirmation_setting.declination_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingdeclination_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.declination_response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.declination_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.declination_response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.declination_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.declination_response.message_group.variation.ssml_message + + + +### fn confirmation_setting.declination_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.declination_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.elicitation_code_hook + + + +### fn confirmation_setting.elicitation_code_hook.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.elicitation_code_hook.new` constructs a new object with attributes and blocks configured for the `elicitation_code_hook` +Terraform sub block. + + + +**Args**: + - `enable_code_hook_invocation` (`bool`): Set the `enable_code_hook_invocation` field on the resulting object. When `null`, the `enable_code_hook_invocation` field will be omitted from the resulting object. + - `invocation_label` (`string`): Set the `invocation_label` field on the resulting object. When `null`, the `invocation_label` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `elicitation_code_hook` sub block. + + +## obj confirmation_setting.failure_conditional + + + +### fn confirmation_setting.failure_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.new` constructs a new object with attributes and blocks configured for the `failure_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.new](#fn-confirmation_settingconfirmation_settingconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.new](#fn-confirmation_settingconfirmation_settingdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_conditional` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch + + + +### fn confirmation_setting.failure_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.condition.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.condition + + + +### fn confirmation_setting.failure_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.next_step + + + +### fn confirmation_setting.failure_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.next_step.dialog_action + + + +### fn confirmation_setting.failure_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.next_step.intent + + + +### fn confirmation_setting.failure_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot + + + +### fn confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch + + + +### fn confirmation_setting.failure_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.new](#fn-confirmation_settingconfirmation_settingfailure_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.next_step + + + +### fn confirmation_setting.failure_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.next_step.dialog_action + + + +### fn confirmation_setting.failure_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.next_step.intent + + + +### fn confirmation_setting.failure_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.next_step.intent.slot + + + +### fn confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.value + + + +### fn confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response + + + +### fn confirmation_setting.failure_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.message + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.failure_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn confirmation_setting.failure_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.failure_next_step + + + +### fn confirmation_setting.failure_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_next_step.new` constructs a new object with attributes and blocks configured for the `failure_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_next_step.dialog_action.new](#fn-confirmation_settingconfirmation_settingdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.new](#fn-confirmation_settingconfirmation_settingintentnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_next_step` sub block. + + +## obj confirmation_setting.failure_next_step.dialog_action + + + +### fn confirmation_setting.failure_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj confirmation_setting.failure_next_step.intent + + + +### fn confirmation_setting.failure_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.slot.new](#fn-confirmation_settingconfirmation_settingfailure_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj confirmation_setting.failure_next_step.intent.slot + + + +### fn confirmation_setting.failure_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.confirmation_setting.failure_next_step.intent.slot.value.new](#fn-confirmation_settingconfirmation_settingfailure_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj confirmation_setting.failure_next_step.intent.slot.value + + + +### fn confirmation_setting.failure_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj confirmation_setting.failure_response + + + +### fn confirmation_setting.failure_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.new` constructs a new object with attributes and blocks configured for the `failure_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.new](#fn-confirmation_settingconfirmation_settingmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_response` sub block. + + +## obj confirmation_setting.failure_response.message_group + + + +### fn confirmation_setting.failure_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.new](#fn-confirmation_settingconfirmation_settingfailure_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.failure_response.message_group.message + + + +### fn confirmation_setting.failure_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.failure_response.message_group.message.custom_payload + + + +### fn confirmation_setting.failure_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.failure_response.message_group.message.image_response_card + + + +### fn confirmation_setting.failure_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.failure_response.message_group.message.image_response_card.button + + + +### fn confirmation_setting.failure_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.failure_response.message_group.message.plain_text_message + + + +### fn confirmation_setting.failure_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.failure_response.message_group.message.ssml_message + + + +### fn confirmation_setting.failure_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.failure_response.message_group.variation + + + +### fn confirmation_setting.failure_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.failure_response.message_group.variation.custom_payload + + + +### fn confirmation_setting.failure_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.failure_response.message_group.variation.image_response_card + + + +### fn confirmation_setting.failure_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingfailure_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.failure_response.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.failure_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.failure_response.message_group.variation.plain_text_message + + + +### fn confirmation_setting.failure_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.failure_response.message_group.variation.ssml_message + + + +### fn confirmation_setting.failure_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.failure_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.prompt_specification + + + +### fn confirmation_setting.prompt_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.new` constructs a new object with attributes and blocks configured for the `prompt_specification` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `max_retries` (`number`): Set the `max_retries` field on the resulting object. + - `message_selection_strategy` (`string`): Set the `message_selection_strategy` field on the resulting object. When `null`, the `message_selection_strategy` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.new](#fn-confirmation_settingconfirmation_settingmessage_groupnew) constructor. + - `prompt_attempts_specification` (`list[obj]`): Set the `prompt_attempts_specification` field on the resulting object. When `null`, the `prompt_attempts_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.new](#fn-confirmation_settingconfirmation_settingprompt_attempts_specificationnew) constructor. + +**Returns**: + - An attribute object that represents the `prompt_specification` sub block. + + +## obj confirmation_setting.prompt_specification.message_group + + + +### fn confirmation_setting.prompt_specification.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.new](#fn-confirmation_settingconfirmation_settingprompt_specificationvariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.message + + + +### fn confirmation_setting.prompt_specification.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.custom_payload.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.image_response_card.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.plain_text_message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.ssml_message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.message.custom_payload + + + +### fn confirmation_setting.prompt_specification.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.message.image_response_card + + + +### fn confirmation_setting.prompt_specification.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.message.image_response_card.button + + + +### fn confirmation_setting.prompt_specification.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.message.plain_text_message + + + +### fn confirmation_setting.prompt_specification.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.message.ssml_message + + + +### fn confirmation_setting.prompt_specification.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.variation + + + +### fn confirmation_setting.prompt_specification.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.custom_payload.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.image_response_card.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.plain_text_message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.ssml_message.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.variation.custom_payload + + + +### fn confirmation_setting.prompt_specification.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.variation.image_response_card + + + +### fn confirmation_setting.prompt_specification.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.image_response_card.button.new](#fn-confirmation_settingconfirmation_settingprompt_specificationmessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.variation.image_response_card.button + + + +### fn confirmation_setting.prompt_specification.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.variation.plain_text_message + + + +### fn confirmation_setting.prompt_specification.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj confirmation_setting.prompt_specification.message_group.variation.ssml_message + + + +### fn confirmation_setting.prompt_specification.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj confirmation_setting.prompt_specification.prompt_attempts_specification + + + +### fn confirmation_setting.prompt_specification.prompt_attempts_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.new` constructs a new object with attributes and blocks configured for the `prompt_attempts_specification` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `map_block_key` (`string`): Set the `map_block_key` field on the resulting object. + - `allowed_input_types` (`list[obj]`): Set the `allowed_input_types` field on the resulting object. When `null`, the `allowed_input_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.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.allowed_input_types.new](#fn-confirmation_settingconfirmation_settingprompt_specificationallowed_input_typesnew) constructor. + - `audio_and_dtmf_input_specification` (`list[obj]`): Set the `audio_and_dtmf_input_specification` field on the resulting object. When `null`, the `audio_and_dtmf_input_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.new](#fn-confirmation_settingconfirmation_settingprompt_specificationaudio_and_dtmf_input_specificationnew) constructor. + - `text_input_specification` (`list[obj]`): Set the `text_input_specification` field on the resulting object. When `null`, the `text_input_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.text_input_specification.new](#fn-confirmation_settingconfirmation_settingprompt_specificationtext_input_specificationnew) constructor. + +**Returns**: + - An attribute object that represents the `prompt_attempts_specification` sub block. + + +## obj confirmation_setting.prompt_specification.prompt_attempts_specification.allowed_input_types + + + +### fn confirmation_setting.prompt_specification.prompt_attempts_specification.allowed_input_types.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.allowed_input_types.new` constructs a new object with attributes and blocks configured for the `allowed_input_types` +Terraform sub block. + + + +**Args**: + - `allow_audio_input` (`bool`): Set the `allow_audio_input` field on the resulting object. + - `allow_dtmf_input` (`bool`): Set the `allow_dtmf_input` field on the resulting object. + +**Returns**: + - An attribute object that represents the `allowed_input_types` sub block. + + +## obj confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification + + + +### fn confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.new` constructs a new object with attributes and blocks configured for the `audio_and_dtmf_input_specification` +Terraform sub block. + + + +**Args**: + - `start_timeout_ms` (`number`): Set the `start_timeout_ms` field on the resulting object. + - `audio_specification` (`list[obj]`): Set the `audio_specification` field on the resulting object. When `null`, the `audio_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.audio_specification.new](#fn-confirmation_settingconfirmation_settingprompt_specificationprompt_attempts_specificationaudio_specificationnew) constructor. + - `dtmf_specification` (`list[obj]`): Set the `dtmf_specification` field on the resulting object. When `null`, the `dtmf_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.dtmf_specification.new](#fn-confirmation_settingconfirmation_settingprompt_specificationprompt_attempts_specificationdtmf_specificationnew) constructor. + +**Returns**: + - An attribute object that represents the `audio_and_dtmf_input_specification` sub block. + + +## obj confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.audio_specification + + + +### fn confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.audio_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.audio_specification.new` constructs a new object with attributes and blocks configured for the `audio_specification` +Terraform sub block. + + + +**Args**: + - `end_timeout_ms` (`number`): Set the `end_timeout_ms` field on the resulting object. + - `max_length_ms` (`number`): Set the `max_length_ms` field on the resulting object. + +**Returns**: + - An attribute object that represents the `audio_specification` sub block. + + +## obj confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.dtmf_specification + + + +### fn confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.dtmf_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.audio_and_dtmf_input_specification.dtmf_specification.new` constructs a new object with attributes and blocks configured for the `dtmf_specification` +Terraform sub block. + + + +**Args**: + - `deletion_character` (`string`): Set the `deletion_character` field on the resulting object. + - `end_character` (`string`): Set the `end_character` field on the resulting object. + - `end_timeout_ms` (`number`): Set the `end_timeout_ms` field on the resulting object. + - `max_length` (`number`): Set the `max_length` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dtmf_specification` sub block. + + +## obj confirmation_setting.prompt_specification.prompt_attempts_specification.text_input_specification + + + +### fn confirmation_setting.prompt_specification.prompt_attempts_specification.text_input_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.confirmation_setting.prompt_specification.prompt_attempts_specification.text_input_specification.new` constructs a new object with attributes and blocks configured for the `text_input_specification` +Terraform sub block. + + + +**Args**: + - `start_timeout_ms` (`number`): Set the `start_timeout_ms` field on the resulting object. + +**Returns**: + - An attribute object that represents the `text_input_specification` sub block. + + +## obj dialog_code_hook + + + +### fn dialog_code_hook.new + +```ts +new() +``` + + +`aws.lexv2models_intent.dialog_code_hook.new` constructs a new object with attributes and blocks configured for the `dialog_code_hook` +Terraform sub block. + + + +**Args**: + - `enabled` (`bool`): Set the `enabled` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_code_hook` sub block. + + +## obj fulfillment_code_hook + + + +### fn fulfillment_code_hook.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.new` constructs a new object with attributes and blocks configured for the `fulfillment_code_hook` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. When `null`, the `active` field will be omitted from the resulting object. + - `enabled` (`bool`): Set the `enabled` field on the resulting object. + - `fulfillment_updates_specification` (`list[obj]`): Set the `fulfillment_updates_specification` field on the resulting object. When `null`, the `fulfillment_updates_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.new](#fn-fulfillment_code_hookfulfillment_updates_specificationnew) constructor. + - `post_fulfillment_status_specification` (`list[obj]`): Set the `post_fulfillment_status_specification` field on the resulting object. When `null`, the `post_fulfillment_status_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.new](#fn-fulfillment_code_hookpost_fulfillment_status_specificationnew) constructor. + +**Returns**: + - An attribute object that represents the `fulfillment_code_hook` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.new` constructs a new object with attributes and blocks configured for the `fulfillment_updates_specification` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `timeout_in_seconds` (`number`): Set the `timeout_in_seconds` field on the resulting object. When `null`, the `timeout_in_seconds` field will be omitted from the resulting object. + - `start_response` (`list[obj]`): Set the `start_response` field on the resulting object. When `null`, the `start_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.new](#fn-fulfillment_code_hookfulfillment_code_hookstart_responsenew) constructor. + - `update_response` (`list[obj]`): Set the `update_response` field on the resulting object. When `null`, the `update_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.new](#fn-fulfillment_code_hookfulfillment_code_hookupdate_responsenew) constructor. + +**Returns**: + - An attribute object that represents the `fulfillment_updates_specification` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.new` constructs a new object with attributes and blocks configured for the `start_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `delay_in_seconds` (`number`): Set the `delay_in_seconds` field on the resulting object. When `null`, the `delay_in_seconds` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `start_response` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationstart_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.start_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.new` constructs a new object with attributes and blocks configured for the `update_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `frequency_in_seconds` (`number`): Set the `frequency_in_seconds` field on the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `update_response` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookfulfillment_updates_specificationupdate_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.fulfillment_updates_specification.update_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.new` constructs a new object with attributes and blocks configured for the `post_fulfillment_status_specification` +Terraform sub block. + + + +**Args**: + - `failure_conditional` (`list[obj]`): Set the `failure_conditional` field on the resulting object. When `null`, the `failure_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.new](#fn-fulfillment_code_hookfulfillment_code_hookfailure_conditionalnew) constructor. + - `failure_next_step` (`list[obj]`): Set the `failure_next_step` field on the resulting object. When `null`, the `failure_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookfailure_next_stepnew) constructor. + - `failure_response` (`list[obj]`): Set the `failure_response` field on the resulting object. When `null`, the `failure_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.new](#fn-fulfillment_code_hookfulfillment_code_hookfailure_responsenew) constructor. + - `success_conditional` (`list[obj]`): Set the `success_conditional` field on the resulting object. When `null`, the `success_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.new](#fn-fulfillment_code_hookfulfillment_code_hooksuccess_conditionalnew) constructor. + - `success_next_step` (`list[obj]`): Set the `success_next_step` field on the resulting object. When `null`, the `success_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.new](#fn-fulfillment_code_hookfulfillment_code_hooksuccess_next_stepnew) constructor. + - `success_response` (`list[obj]`): Set the `success_response` field on the resulting object. When `null`, the `success_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.new](#fn-fulfillment_code_hookfulfillment_code_hooksuccess_responsenew) constructor. + - `timeout_conditional` (`list[obj]`): Set the `timeout_conditional` field on the resulting object. When `null`, the `timeout_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.new](#fn-fulfillment_code_hookfulfillment_code_hooktimeout_conditionalnew) constructor. + - `timeout_next_step` (`list[obj]`): Set the `timeout_next_step` field on the resulting object. When `null`, the `timeout_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.new](#fn-fulfillment_code_hookfulfillment_code_hooktimeout_next_stepnew) constructor. + - `timeout_response` (`list[obj]`): Set the `timeout_response` field on the resulting object. When `null`, the `timeout_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.new](#fn-fulfillment_code_hookfulfillment_code_hooktimeout_responsenew) constructor. + +**Returns**: + - An attribute object that represents the `post_fulfillment_status_specification` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.new` constructs a new object with attributes and blocks configured for the `failure_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_conditional` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.condition.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.condition + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.dialog_action + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.dialog_action + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.value + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.new` constructs a new object with attributes and blocks configured for the `failure_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationintentnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_next_step` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.dialog_action + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.value + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.new` constructs a new object with attributes and blocks configured for the `failure_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_response` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationfailure_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.failure_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.new` constructs a new object with attributes and blocks configured for the `success_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `success_conditional` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.condition.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.condition + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.dialog_action + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.dialog_action + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.value + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.new` constructs a new object with attributes and blocks configured for the `success_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationintentnew) constructor. + +**Returns**: + - An attribute object that represents the `success_next_step` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.dialog_action + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.value + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.new` constructs a new object with attributes and blocks configured for the `success_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `success_response` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationsuccess_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.success_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.new` constructs a new object with attributes and blocks configured for the `timeout_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `timeout_conditional` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.condition.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.condition + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.dialog_action + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.dialog_action + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.value + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.new` constructs a new object with attributes and blocks configured for the `timeout_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.dialog_action.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationintentnew) constructor. + +**Returns**: + - An attribute object that represents the `timeout_next_step` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.dialog_action + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.value.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.value + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.new` constructs a new object with attributes and blocks configured for the `timeout_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `timeout_response` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.custom_payload.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.plain_text_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.ssml_message.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.custom_payload + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.button.new](#fn-fulfillment_code_hookfulfillment_code_hookpost_fulfillment_status_specificationtimeout_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.button + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.plain_text_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.ssml_message + + + +### fn fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.fulfillment_code_hook.post_fulfillment_status_specification.timeout_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting + + + +### fn initial_response_setting.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.new` constructs a new object with attributes and blocks configured for the `initial_response_setting` +Terraform sub block. + + + +**Args**: + - `code_hook` (`list[obj]`): Set the `code_hook` field on the resulting object. When `null`, the `code_hook` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.new](#fn-initial_response_settingcode_hooknew) constructor. + - `conditional` (`list[obj]`): Set the `conditional` field on the resulting object. When `null`, the `conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.new](#fn-initial_response_settingconditionalnew) constructor. + - `initial_response` (`list[obj]`): Set the `initial_response` field on the resulting object. When `null`, the `initial_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.new](#fn-initial_response_settinginitial_responsenew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.next_step.new](#fn-initial_response_settingnext_stepnew) constructor. + +**Returns**: + - An attribute object that represents the `initial_response_setting` sub block. + + +## obj initial_response_setting.code_hook + + + +### fn initial_response_setting.code_hook.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.new` constructs a new object with attributes and blocks configured for the `code_hook` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `enable_code_hook_invocation` (`bool`): Set the `enable_code_hook_invocation` field on the resulting object. + - `invocation_label` (`string`): Set the `invocation_label` field on the resulting object. When `null`, the `invocation_label` field will be omitted from the resulting object. + - `post_code_hook_specification` (`list[obj]`): Set the `post_code_hook_specification` field on the resulting object. When `null`, the `post_code_hook_specification` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.new](#fn-initial_response_settinginitial_response_settingpost_code_hook_specificationnew) constructor. + +**Returns**: + - An attribute object that represents the `code_hook` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.new` constructs a new object with attributes and blocks configured for the `post_code_hook_specification` +Terraform sub block. + + + +**Args**: + - `failure_conditional` (`list[obj]`): Set the `failure_conditional` field on the resulting object. When `null`, the `failure_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.new](#fn-initial_response_settinginitial_response_settingcode_hookfailure_conditionalnew) constructor. + - `failure_next_step` (`list[obj]`): Set the `failure_next_step` field on the resulting object. When `null`, the `failure_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookfailure_next_stepnew) constructor. + - `failure_response` (`list[obj]`): Set the `failure_response` field on the resulting object. When `null`, the `failure_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.new](#fn-initial_response_settinginitial_response_settingcode_hookfailure_responsenew) constructor. + - `success_conditional` (`list[obj]`): Set the `success_conditional` field on the resulting object. When `null`, the `success_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.new](#fn-initial_response_settinginitial_response_settingcode_hooksuccess_conditionalnew) constructor. + - `success_next_step` (`list[obj]`): Set the `success_next_step` field on the resulting object. When `null`, the `success_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.new](#fn-initial_response_settinginitial_response_settingcode_hooksuccess_next_stepnew) constructor. + - `success_response` (`list[obj]`): Set the `success_response` field on the resulting object. When `null`, the `success_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.new](#fn-initial_response_settinginitial_response_settingcode_hooksuccess_responsenew) constructor. + - `timeout_conditional` (`list[obj]`): Set the `timeout_conditional` field on the resulting object. When `null`, the `timeout_conditional` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.new](#fn-initial_response_settinginitial_response_settingcode_hooktimeout_conditionalnew) constructor. + - `timeout_next_step` (`list[obj]`): Set the `timeout_next_step` field on the resulting object. When `null`, the `timeout_next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.new](#fn-initial_response_settinginitial_response_settingcode_hooktimeout_next_stepnew) constructor. + - `timeout_response` (`list[obj]`): Set the `timeout_response` field on the resulting object. When `null`, the `timeout_response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.new](#fn-initial_response_settinginitial_response_settingcode_hooktimeout_responsenew) constructor. + +**Returns**: + - An attribute object that represents the `post_code_hook_specification` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.new` constructs a new object with attributes and blocks configured for the `failure_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_conditional` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.new` constructs a new object with attributes and blocks configured for the `failure_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationintentnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_next_step` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.new` constructs a new object with attributes and blocks configured for the `failure_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `failure_response` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationfailure_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.failure_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.new` constructs a new object with attributes and blocks configured for the `success_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `success_conditional` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.new` constructs a new object with attributes and blocks configured for the `success_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationintentnew) constructor. + +**Returns**: + - An attribute object that represents the `success_next_step` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.new` constructs a new object with attributes and blocks configured for the `success_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `success_response` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationsuccess_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.success_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.new` constructs a new object with attributes and blocks configured for the `timeout_conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `timeout_conditional` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_conditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.new` constructs a new object with attributes and blocks configured for the `timeout_next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationintentnew) constructor. + +**Returns**: + - An attribute object that represents the `timeout_next_step` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_next_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.new` constructs a new object with attributes and blocks configured for the `timeout_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `timeout_response` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingcode_hookpost_code_hook_specificationtimeout_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message + + + +### fn initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.code_hook.post_code_hook_specification.timeout_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.conditional + + + +### fn initial_response_setting.conditional.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.new` constructs a new object with attributes and blocks configured for the `conditional` +Terraform sub block. + + + +**Args**: + - `active` (`bool`): Set the `active` field on the resulting object. + - `conditional_branch` (`list[obj]`): Set the `conditional_branch` field on the resulting object. When `null`, the `conditional_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.new](#fn-initial_response_settinginitial_response_settingconditional_branchnew) constructor. + - `default_branch` (`list[obj]`): Set the `default_branch` field on the resulting object. When `null`, the `default_branch` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.new](#fn-initial_response_settinginitial_response_settingdefault_branchnew) constructor. + +**Returns**: + - An attribute object that represents the `conditional` sub block. + + +## obj initial_response_setting.conditional.conditional_branch + + + +### fn initial_response_setting.conditional.conditional_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.new` constructs a new object with attributes and blocks configured for the `conditional_branch` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `condition` (`list[obj]`): Set the `condition` field on the resulting object. When `null`, the `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.lexv2models_intent.initial_response_setting.conditional.conditional_branch.condition.new](#fn-initial_response_settinginitial_response_settingconditionalconditionnew) constructor. + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.new](#fn-initial_response_settinginitial_response_settingconditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.new](#fn-initial_response_settinginitial_response_settingconditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `conditional_branch` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.condition + + + +### fn initial_response_setting.conditional.conditional_branch.condition.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.condition.new` constructs a new object with attributes and blocks configured for the `condition` +Terraform sub block. + + + +**Args**: + - `expression_string` (`string`): Set the `expression_string` field on the resulting object. + +**Returns**: + - An attribute object that represents the `condition` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.next_step + + + +### fn initial_response_setting.conditional.conditional_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.next_step.dialog_action + + + +### fn initial_response_setting.conditional.conditional_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.next_step.intent + + + +### fn initial_response_setting.conditional.conditional_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.next_step.intent.slot + + + +### fn initial_response_setting.conditional.conditional_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.next_step.intent.slot.value + + + +### fn initial_response_setting.conditional.conditional_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response + + + +### fn initial_response_setting.conditional.conditional_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.message + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.message.custom_payload + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.message.plain_text_message + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.message.ssml_message + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.variation + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.custom_payload + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingconditionalconditional_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.conditional.conditional_branch.response.message_group.variation.ssml_message + + + +### fn initial_response_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.conditional_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.conditional.default_branch + + + +### fn initial_response_setting.conditional.default_branch.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.new` constructs a new object with attributes and blocks configured for the `default_branch` +Terraform sub block. + + + +**Args**: + - `next_step` (`list[obj]`): Set the `next_step` field on the resulting object. When `null`, the `next_step` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.new](#fn-initial_response_settinginitial_response_settingconditionalnext_stepnew) constructor. + - `response` (`list[obj]`): Set the `response` field on the resulting object. When `null`, the `response` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.new](#fn-initial_response_settinginitial_response_settingconditionalresponsenew) constructor. + +**Returns**: + - An attribute object that represents the `default_branch` sub block. + + +## obj initial_response_setting.conditional.default_branch.next_step + + + +### fn initial_response_setting.conditional.default_branch.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj initial_response_setting.conditional.default_branch.next_step.dialog_action + + + +### fn initial_response_setting.conditional.default_branch.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.conditional.default_branch.next_step.intent + + + +### fn initial_response_setting.conditional.default_branch.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.conditional.default_branch.next_step.intent.slot + + + +### fn initial_response_setting.conditional.default_branch.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.conditional.default_branch.next_step.intent.slot.value + + + +### fn initial_response_setting.conditional.default_branch.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj initial_response_setting.conditional.default_branch.response + + + +### fn initial_response_setting.conditional.default_branch.response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.new` constructs a new object with attributes and blocks configured for the `response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `response` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.message + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.message.custom_payload + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.message.plain_text_message + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.message.ssml_message + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.variation + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.variation.custom_payload + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settingconditionaldefault_branchresponsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.conditional.default_branch.response.message_group.variation.ssml_message + + + +### fn initial_response_setting.conditional.default_branch.response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.conditional.default_branch.response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.initial_response + + + +### fn initial_response_setting.initial_response.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.new` constructs a new object with attributes and blocks configured for the `initial_response` +Terraform sub block. + + + +**Args**: + - `allow_interrupt` (`bool`): Set the `allow_interrupt` field on the resulting object. When `null`, the `allow_interrupt` field will be omitted from the resulting object. + - `message_group` (`list[obj]`): Set the `message_group` field on the resulting object. When `null`, the `message_group` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.new](#fn-initial_response_settinginitial_response_settingmessage_groupnew) constructor. + +**Returns**: + - An attribute object that represents the `initial_response` sub block. + + +## obj initial_response_setting.initial_response.message_group + + + +### fn initial_response_setting.initial_response.message_group.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.new` constructs a new object with attributes and blocks configured for the `message_group` +Terraform sub block. + + + +**Args**: + - `message` (`list[obj]`): Set the `message` field on the resulting object. When `null`, the `message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessagenew) constructor. + - `variation` (`list[obj]`): Set the `variation` field on the resulting object. When `null`, the `variation` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.new](#fn-initial_response_settinginitial_response_settinginitial_responsevariationnew) constructor. + +**Returns**: + - An attribute object that represents the `message_group` sub block. + + +## obj initial_response_setting.initial_response.message_group.message + + + +### fn initial_response_setting.initial_response.message_group.message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.new` constructs a new object with attributes and blocks configured for the `message` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.custom_payload.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.image_response_card.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.plain_text_message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.ssml_message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `message` sub block. + + +## obj initial_response_setting.initial_response.message_group.message.custom_payload + + + +### fn initial_response_setting.initial_response.message_group.message.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.initial_response.message_group.message.image_response_card + + + +### fn initial_response_setting.initial_response.message_group.message.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.image_response_card.button.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupmessagebuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.initial_response.message_group.message.image_response_card.button + + + +### fn initial_response_setting.initial_response.message_group.message.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.initial_response.message_group.message.plain_text_message + + + +### fn initial_response_setting.initial_response.message_group.message.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.initial_response.message_group.message.ssml_message + + + +### fn initial_response_setting.initial_response.message_group.message.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.message.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.initial_response.message_group.variation + + + +### fn initial_response_setting.initial_response.message_group.variation.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.new` constructs a new object with attributes and blocks configured for the `variation` +Terraform sub block. + + + +**Args**: + - `custom_payload` (`list[obj]`): Set the `custom_payload` field on the resulting object. When `null`, the `custom_payload` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.custom_payload.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupcustom_payloadnew) constructor. + - `image_response_card` (`list[obj]`): Set the `image_response_card` field on the resulting object. When `null`, the `image_response_card` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.image_response_card.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupimage_response_cardnew) constructor. + - `plain_text_message` (`list[obj]`): Set the `plain_text_message` field on the resulting object. When `null`, the `plain_text_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.plain_text_message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupplain_text_messagenew) constructor. + - `ssml_message` (`list[obj]`): Set the `ssml_message` field on the resulting object. When `null`, the `ssml_message` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.ssml_message.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupssml_messagenew) constructor. + +**Returns**: + - An attribute object that represents the `variation` sub block. + + +## obj initial_response_setting.initial_response.message_group.variation.custom_payload + + + +### fn initial_response_setting.initial_response.message_group.variation.custom_payload.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.custom_payload.new` constructs a new object with attributes and blocks configured for the `custom_payload` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `custom_payload` sub block. + + +## obj initial_response_setting.initial_response.message_group.variation.image_response_card + + + +### fn initial_response_setting.initial_response.message_group.variation.image_response_card.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.image_response_card.new` constructs a new object with attributes and blocks configured for the `image_response_card` +Terraform sub block. + + + +**Args**: + - `image_url` (`string`): Set the `image_url` field on the resulting object. When `null`, the `image_url` field will be omitted from the resulting object. + - `subtitle` (`string`): Set the `subtitle` field on the resulting object. When `null`, the `subtitle` field will be omitted from the resulting object. + - `title` (`string`): Set the `title` field on the resulting object. + - `button` (`list[obj]`): Set the `button` field on the resulting object. When `null`, the `button` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.image_response_card.button.new](#fn-initial_response_settinginitial_response_settinginitial_responsemessage_groupvariationbuttonnew) constructor. + +**Returns**: + - An attribute object that represents the `image_response_card` sub block. + + +## obj initial_response_setting.initial_response.message_group.variation.image_response_card.button + + + +### fn initial_response_setting.initial_response.message_group.variation.image_response_card.button.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.image_response_card.button.new` constructs a new object with attributes and blocks configured for the `button` +Terraform sub block. + + + +**Args**: + - `text` (`string`): Set the `text` field on the resulting object. + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `button` sub block. + + +## obj initial_response_setting.initial_response.message_group.variation.plain_text_message + + + +### fn initial_response_setting.initial_response.message_group.variation.plain_text_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.plain_text_message.new` constructs a new object with attributes and blocks configured for the `plain_text_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `plain_text_message` sub block. + + +## obj initial_response_setting.initial_response.message_group.variation.ssml_message + + + +### fn initial_response_setting.initial_response.message_group.variation.ssml_message.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.initial_response.message_group.variation.ssml_message.new` constructs a new object with attributes and blocks configured for the `ssml_message` +Terraform sub block. + + + +**Args**: + - `value` (`string`): Set the `value` field on the resulting object. + +**Returns**: + - An attribute object that represents the `ssml_message` sub block. + + +## obj initial_response_setting.next_step + + + +### fn initial_response_setting.next_step.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.next_step.new` constructs a new object with attributes and blocks configured for the `next_step` +Terraform sub block. + + + +**Args**: + - `session_attributes` (`obj`): Set the `session_attributes` field on the resulting object. When `null`, the `session_attributes` field will be omitted from the resulting object. + - `dialog_action` (`list[obj]`): Set the `dialog_action` field on the resulting object. When `null`, the `dialog_action` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.next_step.dialog_action.new](#fn-initial_response_settinginitial_response_settingdialog_actionnew) constructor. + - `intent` (`list[obj]`): Set the `intent` field on the resulting object. When `null`, the `intent` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.next_step.intent.new](#fn-initial_response_settinginitial_response_settingintentnew) constructor. + +**Returns**: + - An attribute object that represents the `next_step` sub block. + + +## obj initial_response_setting.next_step.dialog_action + + + +### fn initial_response_setting.next_step.dialog_action.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.next_step.dialog_action.new` constructs a new object with attributes and blocks configured for the `dialog_action` +Terraform sub block. + + + +**Args**: + - `slot_to_elicit` (`string`): Set the `slot_to_elicit` field on the resulting object. When `null`, the `slot_to_elicit` field will be omitted from the resulting object. + - `suppress_next_message` (`bool`): Set the `suppress_next_message` field on the resulting object. When `null`, the `suppress_next_message` field will be omitted from the resulting object. + - `type` (`string`): Set the `type` field on the resulting object. + +**Returns**: + - An attribute object that represents the `dialog_action` sub block. + + +## obj initial_response_setting.next_step.intent + + + +### fn initial_response_setting.next_step.intent.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.next_step.intent.new` constructs a new object with attributes and blocks configured for the `intent` +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. + - `slot` (`list[obj]`): Set the `slot` field on the resulting object. When `null`, the `slot` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.lexv2models_intent.initial_response_setting.next_step.intent.slot.new](#fn-initial_response_settinginitial_response_settingnext_stepslotnew) constructor. + +**Returns**: + - An attribute object that represents the `intent` sub block. + + +## obj initial_response_setting.next_step.intent.slot + + + +### fn initial_response_setting.next_step.intent.slot.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.next_step.intent.slot.new` constructs a new object with attributes and blocks configured for the `slot` +Terraform sub block. + + + +**Args**: + - `map_block_key` (`string`): Set the `map_block_key` field on 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. + - `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.lexv2models_intent.initial_response_setting.next_step.intent.slot.value.new](#fn-initial_response_settinginitial_response_settingnext_stepintentvaluenew) constructor. + +**Returns**: + - An attribute object that represents the `slot` sub block. + + +## obj initial_response_setting.next_step.intent.slot.value + + + +### fn initial_response_setting.next_step.intent.slot.value.new + +```ts +new() +``` + + +`aws.lexv2models_intent.initial_response_setting.next_step.intent.slot.value.new` constructs a new object with attributes and blocks configured for the `value` +Terraform sub block. + + + +**Args**: + - `interpreted_value` (`string`): Set the `interpreted_value` field on the resulting object. When `null`, the `interpreted_value` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `value` sub block. + + +## obj input_context + + + +### fn input_context.new + +```ts +new() +``` + + +`aws.lexv2models_intent.input_context.new` constructs a new object with attributes and blocks configured for the `input_context` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + +**Returns**: + - An attribute object that represents the `input_context` sub block. + + +## obj kendra_configuration + + + +### fn kendra_configuration.new + +```ts +new() +``` + + +`aws.lexv2models_intent.kendra_configuration.new` constructs a new object with attributes and blocks configured for the `kendra_configuration` +Terraform sub block. + + + +**Args**: + - `kendra_index` (`string`): Set the `kendra_index` field on the resulting object. + - `query_filter_string` (`string`): Set the `query_filter_string` field on the resulting object. When `null`, the `query_filter_string` field will be omitted from the resulting object. + - `query_filter_string_enabled` (`bool`): Set the `query_filter_string_enabled` field on the resulting object. When `null`, the `query_filter_string_enabled` field will be omitted from the resulting object. + +**Returns**: + - An attribute object that represents the `kendra_configuration` sub block. + + +## obj output_context + + + +### fn output_context.new + +```ts +new() +``` + + +`aws.lexv2models_intent.output_context.new` constructs a new object with attributes and blocks configured for the `output_context` +Terraform sub block. + + + +**Args**: + - `name` (`string`): Set the `name` field on the resulting object. + - `time_to_live_in_seconds` (`number`): Set the `time_to_live_in_seconds` field on the resulting object. + - `turns_to_live` (`number`): Set the `turns_to_live` field on the resulting object. + +**Returns**: + - An attribute object that represents the `output_context` sub block. + + +## obj sample_utterance + + + +### fn sample_utterance.new + +```ts +new() +``` + + +`aws.lexv2models_intent.sample_utterance.new` constructs a new object with attributes and blocks configured for the `sample_utterance` +Terraform sub block. + + + +**Args**: + - `utterance` (`string`): Set the `utterance` field on the resulting object. + +**Returns**: + - An attribute object that represents the `sample_utterance` sub block. + + +## obj slot_priority + + + +### fn slot_priority.new + +```ts +new() +``` + + +`aws.lexv2models_intent.slot_priority.new` constructs a new object with attributes and blocks configured for the `slot_priority` +Terraform sub block. + + + +**Args**: + - `priority` (`number`): Set the `priority` field on the resulting object. + - `slot_id` (`string`): Set the `slot_id` field on the resulting object. + +**Returns**: + - An attribute object that represents the `slot_priority` sub block. + + +## obj timeouts + + + +### fn timeouts.new + +```ts +new() +``` + + +`aws.lexv2models_intent.timeouts.new` constructs a new object with attributes and blocks configured for the `timeouts` +Terraform sub block. + + + +**Args**: + - `create` (`string`): A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). When `null`, the `create` field will be omitted from the resulting object. + - `delete` (`string`): A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. When `null`, the `delete` field will be omitted from the resulting object. + - `update` (`string`): A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). 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/5.x/provider.md b/docs/5.x/provider.md index f599fa35..3baa0678 100644 --- a/docs/5.x/provider.md +++ b/docs/5.x/provider.md @@ -431,6 +431,7 @@ Terraform sub block. - `locationservice` (`string`): Use this to override the default service endpoint URL When `null`, the `locationservice` field will be omitted from the resulting object. - `logs` (`string`): Use this to override the default service endpoint URL When `null`, the `logs` field will be omitted from the resulting object. - `lookoutmetrics` (`string`): Use this to override the default service endpoint URL When `null`, the `lookoutmetrics` field will be omitted from the resulting object. + - `m2` (`string`): Use this to override the default service endpoint URL When `null`, the `m2` field will be omitted from the resulting object. - `macie2` (`string`): Use this to override the default service endpoint URL When `null`, the `macie2` field will be omitted from the resulting object. - `managedgrafana` (`string`): Use this to override the default service endpoint URL When `null`, the `managedgrafana` field will be omitted from the resulting object. - `mediaconnect` (`string`): Use this to override the default service endpoint URL When `null`, the `mediaconnect` field will be omitted from the resulting object. @@ -473,6 +474,7 @@ Terraform sub block. - `redshiftdata` (`string`): Use this to override the default service endpoint URL When `null`, the `redshiftdata` field will be omitted from the resulting object. - `redshiftdataapiservice` (`string`): Use this to override the default service endpoint URL When `null`, the `redshiftdataapiservice` field will be omitted from the resulting object. - `redshiftserverless` (`string`): Use this to override the default service endpoint URL When `null`, the `redshiftserverless` field will be omitted from the resulting object. + - `rekognition` (`string`): Use this to override the default service endpoint URL When `null`, the `rekognition` field will be omitted from the resulting object. - `resourceexplorer2` (`string`): Use this to override the default service endpoint URL When `null`, the `resourceexplorer2` field will be omitted from the resulting object. - `resourcegroups` (`string`): Use this to override the default service endpoint URL When `null`, the `resourcegroups` field will be omitted from the resulting object. - `resourcegroupstagging` (`string`): Use this to override the default service endpoint URL When `null`, the `resourcegroupstagging` field will be omitted from the resulting object. diff --git a/docs/5.x/secretsmanager_secret_rotation.md b/docs/5.x/secretsmanager_secret_rotation.md index da82773e..a0dadbab 100644 --- a/docs/5.x/secretsmanager_secret_rotation.md +++ b/docs/5.x/secretsmanager_secret_rotation.md @@ -15,6 +15,7 @@ This package contains functions and utilities for setting up the resource using * [`fn new()`](#fn-new) * [`fn newAttrs()`](#fn-newattrs) +* [`fn withRotateImmediately()`](#fn-withrotateimmediately) * [`fn withRotationLambdaArn()`](#fn-withrotationlambdaarn) * [`fn withRotationRules()`](#fn-withrotationrules) * [`fn withRotationRulesMixin()`](#fn-withrotationrulesmixin) @@ -51,6 +52,7 @@ or `$` to refer to the root object. Instead, make an explicit outer object using **Args**: - `resourceLabel` (`string`): The name label of the block. + - `rotate_immediately` (`bool`): Set the `rotate_immediately` field on the resulting resource block. When `null`, the `rotate_immediately` field will be omitted from the resulting object. - `rotation_lambda_arn` (`string`): Set the `rotation_lambda_arn` field on the resulting resource block. When `null`, the `rotation_lambda_arn` field will be omitted from the resulting object. - `secret_id` (`string`): Set the `secret_id` field on the resulting resource block. - `rotation_rules` (`list[obj]`): Set the `rotation_rules` field on the resulting resource block. When `null`, the `rotation_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.secretsmanager_secret_rotation.rotation_rules.new](#fn-rotation_rulesnew) constructor. @@ -77,6 +79,7 @@ This is most useful when you need to preprocess the attributes with functions, c injecting into a complete block. **Args**: + - `rotate_immediately` (`bool`): Set the `rotate_immediately` field on the resulting object. When `null`, the `rotate_immediately` field will be omitted from the resulting object. - `rotation_lambda_arn` (`string`): Set the `rotation_lambda_arn` field on the resulting object. When `null`, the `rotation_lambda_arn` field will be omitted from the resulting object. - `secret_id` (`string`): Set the `secret_id` field on the resulting object. - `rotation_rules` (`list[obj]`): Set the `rotation_rules` field on the resulting object. When `null`, the `rotation_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.secretsmanager_secret_rotation.rotation_rules.new](#fn-rotation_rulesnew) constructor. @@ -85,6 +88,22 @@ injecting into a complete block. - 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 `secretsmanager_secret_rotation` resource into the root Terraform configuration. +### fn withRotateImmediately + +```ts +withRotateImmediately() +``` + +`aws.bool.withRotateImmediately` constructs a mixin object that can be merged into the `bool` +Terraform resource block to set or update the rotate_immediately field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`bool`): The value to set for the `rotate_immediately` field. + + ### fn withRotationLambdaArn ```ts