Try AWS Native preview for resources not in the classic version.
aws.lex.V2modelsBot
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Resource for managing an AWS Lex V2 Models Bot.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.lex.V2modelsBot("example", {
name: "example",
dataPrivacies: [{
childDirected: "boolean",
}],
idleSessionTtlInSeconds: 10,
roleArn: "bot_example_arn",
tags: {
foo: "bar",
},
});
import pulumi
import pulumi_aws as aws
example = aws.lex.V2modelsBot("example",
name="example",
data_privacies=[{
"childDirected": "boolean",
}],
idle_session_ttl_in_seconds=10,
role_arn="bot_example_arn",
tags={
"foo": "bar",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lex"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lex.NewV2modelsBot(ctx, "example", &lex.V2modelsBotArgs{
Name: pulumi.String("example"),
DataPrivacies: lex.V2modelsBotDataPrivacyArray{
&lex.V2modelsBotDataPrivacyArgs{
ChildDirected: pulumi.Bool("boolean"),
},
},
IdleSessionTtlInSeconds: pulumi.Int(10),
RoleArn: pulumi.String("bot_example_arn"),
Tags: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Lex.V2modelsBot("example", new()
{
Name = "example",
DataPrivacies = new[]
{
new Aws.Lex.Inputs.V2modelsBotDataPrivacyArgs
{
ChildDirected = "boolean",
},
},
IdleSessionTtlInSeconds = 10,
RoleArn = "bot_example_arn",
Tags =
{
{ "foo", "bar" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lex.V2modelsBot;
import com.pulumi.aws.lex.V2modelsBotArgs;
import com.pulumi.aws.lex.inputs.V2modelsBotDataPrivacyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new V2modelsBot("example", V2modelsBotArgs.builder()
.name("example")
.dataPrivacies(V2modelsBotDataPrivacyArgs.builder()
.childDirected("boolean")
.build())
.idleSessionTtlInSeconds(10)
.roleArn("bot_example_arn")
.tags(Map.of("foo", "bar"))
.build());
}
}
resources:
example:
type: aws:lex:V2modelsBot
properties:
name: example
dataPrivacies:
- childDirected: boolean
idleSessionTtlInSeconds: 10
roleArn: bot_example_arn
tags:
foo: bar
Create V2modelsBot Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new V2modelsBot(name: string, args: V2modelsBotArgs, opts?: CustomResourceOptions);
@overload
def V2modelsBot(resource_name: str,
args: V2modelsBotArgs,
opts: Optional[ResourceOptions] = None)
@overload
def V2modelsBot(resource_name: str,
opts: Optional[ResourceOptions] = None,
idle_session_ttl_in_seconds: Optional[int] = None,
role_arn: Optional[str] = None,
data_privacies: Optional[Sequence[V2modelsBotDataPrivacyArgs]] = None,
description: Optional[str] = None,
members: Optional[Sequence[V2modelsBotMemberArgs]] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
test_bot_alias_tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[V2modelsBotTimeoutsArgs] = None,
type: Optional[str] = None)
func NewV2modelsBot(ctx *Context, name string, args V2modelsBotArgs, opts ...ResourceOption) (*V2modelsBot, error)
public V2modelsBot(string name, V2modelsBotArgs args, CustomResourceOptions? opts = null)
public V2modelsBot(String name, V2modelsBotArgs args)
public V2modelsBot(String name, V2modelsBotArgs args, CustomResourceOptions options)
type: aws:lex:V2modelsBot
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args V2modelsBotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args V2modelsBotArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args V2modelsBotArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args V2modelsBotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args V2modelsBotArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var v2modelsBotResource = new Aws.Lex.V2modelsBot("v2modelsBotResource", new()
{
IdleSessionTtlInSeconds = 0,
RoleArn = "string",
DataPrivacies = new[]
{
new Aws.Lex.Inputs.V2modelsBotDataPrivacyArgs
{
ChildDirected = false,
},
},
Description = "string",
Members = new[]
{
new Aws.Lex.Inputs.V2modelsBotMemberArgs
{
AliasId = "string",
AliasName = "string",
Id = "string",
Name = "string",
Version = "string",
},
},
Name = "string",
Tags =
{
{ "string", "string" },
},
TestBotAliasTags =
{
{ "string", "string" },
},
Timeouts = new Aws.Lex.Inputs.V2modelsBotTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
Type = "string",
});
example, err := lex.NewV2modelsBot(ctx, "v2modelsBotResource", &lex.V2modelsBotArgs{
IdleSessionTtlInSeconds: pulumi.Int(0),
RoleArn: pulumi.String("string"),
DataPrivacies: lex.V2modelsBotDataPrivacyArray{
&lex.V2modelsBotDataPrivacyArgs{
ChildDirected: pulumi.Bool(false),
},
},
Description: pulumi.String("string"),
Members: lex.V2modelsBotMemberArray{
&lex.V2modelsBotMemberArgs{
AliasId: pulumi.String("string"),
AliasName: pulumi.String("string"),
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TestBotAliasTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &lex.V2modelsBotTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
Type: pulumi.String("string"),
})
var v2modelsBotResource = new V2modelsBot("v2modelsBotResource", V2modelsBotArgs.builder()
.idleSessionTtlInSeconds(0)
.roleArn("string")
.dataPrivacies(V2modelsBotDataPrivacyArgs.builder()
.childDirected(false)
.build())
.description("string")
.members(V2modelsBotMemberArgs.builder()
.aliasId("string")
.aliasName("string")
.id("string")
.name("string")
.version("string")
.build())
.name("string")
.tags(Map.of("string", "string"))
.testBotAliasTags(Map.of("string", "string"))
.timeouts(V2modelsBotTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.type("string")
.build());
v2models_bot_resource = aws.lex.V2modelsBot("v2modelsBotResource",
idle_session_ttl_in_seconds=0,
role_arn="string",
data_privacies=[{
"childDirected": False,
}],
description="string",
members=[{
"aliasId": "string",
"aliasName": "string",
"id": "string",
"name": "string",
"version": "string",
}],
name="string",
tags={
"string": "string",
},
test_bot_alias_tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
},
type="string")
const v2modelsBotResource = new aws.lex.V2modelsBot("v2modelsBotResource", {
idleSessionTtlInSeconds: 0,
roleArn: "string",
dataPrivacies: [{
childDirected: false,
}],
description: "string",
members: [{
aliasId: "string",
aliasName: "string",
id: "string",
name: "string",
version: "string",
}],
name: "string",
tags: {
string: "string",
},
testBotAliasTags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
type: "string",
});
type: aws:lex:V2modelsBot
properties:
dataPrivacies:
- childDirected: false
description: string
idleSessionTtlInSeconds: 0
members:
- aliasId: string
aliasName: string
id: string
name: string
version: string
name: string
roleArn: string
tags:
string: string
testBotAliasTags:
string: string
timeouts:
create: string
delete: string
update: string
type: string
V2modelsBot Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The V2modelsBot resource accepts the following input properties:
- Idle
Session intTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- Role
Arn string ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- Data
Privacies List<V2modelsBot Data Privacy> - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- Description string
- Description of the bot. It appears in lists to help you identify a particular bot.
- Members
List<V2models
Bot Member> - List of bot members in a network to be created. See
bot_members
. - Name string
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- Dictionary<string, string>
- List of tags to add to the bot. You can only add tags when you create a bot.
- Dictionary<string, string>
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- Timeouts
V2models
Bot Timeouts - Type string
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- Idle
Session intTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- Role
Arn string ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- Data
Privacies []V2modelsBot Data Privacy Args - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- Description string
- Description of the bot. It appears in lists to help you identify a particular bot.
- Members
[]V2models
Bot Member Args - List of bot members in a network to be created. See
bot_members
. - Name string
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- map[string]string
- List of tags to add to the bot. You can only add tags when you create a bot.
- map[string]string
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- Timeouts
V2models
Bot Timeouts Args - Type string
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- idle
Session IntegerTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- role
Arn String ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- data
Privacies List<V2modelsBot Data Privacy> - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- description String
- Description of the bot. It appears in lists to help you identify a particular bot.
- members
List<V2models
Bot Member> - List of bot members in a network to be created. See
bot_members
. - name String
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- Map<String,String>
- List of tags to add to the bot. You can only add tags when you create a bot.
- Map<String,String>
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- timeouts
V2models
Bot Timeouts - type String
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- idle
Session numberTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- role
Arn string ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- data
Privacies V2modelsBot Data Privacy[] - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- description string
- Description of the bot. It appears in lists to help you identify a particular bot.
- members
V2models
Bot Member[] - List of bot members in a network to be created. See
bot_members
. - name string
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- {[key: string]: string}
- List of tags to add to the bot. You can only add tags when you create a bot.
- {[key: string]: string}
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- timeouts
V2models
Bot Timeouts - type string
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- idle_
session_ intttl_ in_ seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- role_
arn str ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- data_
privacies Sequence[V2modelsBot Data Privacy Args] - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- description str
- Description of the bot. It appears in lists to help you identify a particular bot.
- members
Sequence[V2models
Bot Member Args] - List of bot members in a network to be created. See
bot_members
. - name str
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- Mapping[str, str]
- List of tags to add to the bot. You can only add tags when you create a bot.
- Mapping[str, str]
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- timeouts
V2models
Bot Timeouts Args - type str
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- idle
Session NumberTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- role
Arn String ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- data
Privacies List<Property Map> - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- description String
- Description of the bot. It appears in lists to help you identify a particular bot.
- members List<Property Map>
- List of bot members in a network to be created. See
bot_members
. - name String
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- Map<String>
- List of tags to add to the bot. You can only add tags when you create a bot.
- Map<String>
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- timeouts Property Map
- type String
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
Outputs
All input properties are implicitly available as output properties. Additionally, the V2modelsBot resource produces the following output properties:
Look up Existing V2modelsBot Resource
Get an existing V2modelsBot resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: V2modelsBotState, opts?: CustomResourceOptions): V2modelsBot
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
data_privacies: Optional[Sequence[V2modelsBotDataPrivacyArgs]] = None,
description: Optional[str] = None,
idle_session_ttl_in_seconds: Optional[int] = None,
members: Optional[Sequence[V2modelsBotMemberArgs]] = None,
name: Optional[str] = None,
role_arn: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
test_bot_alias_tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[V2modelsBotTimeoutsArgs] = None,
type: Optional[str] = None) -> V2modelsBot
func GetV2modelsBot(ctx *Context, name string, id IDInput, state *V2modelsBotState, opts ...ResourceOption) (*V2modelsBot, error)
public static V2modelsBot Get(string name, Input<string> id, V2modelsBotState? state, CustomResourceOptions? opts = null)
public static V2modelsBot get(String name, Output<String> id, V2modelsBotState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- Data
Privacies List<V2modelsBot Data Privacy> - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- Description string
- Description of the bot. It appears in lists to help you identify a particular bot.
- Idle
Session intTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- Members
List<V2models
Bot Member> - List of bot members in a network to be created. See
bot_members
. - Name string
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- Role
Arn string ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- Dictionary<string, string>
- List of tags to add to the bot. You can only add tags when you create a bot.
- Dictionary<string, string>
- Dictionary<string, string>
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- Timeouts
V2models
Bot Timeouts - Type string
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- Arn string
- Data
Privacies []V2modelsBot Data Privacy Args - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- Description string
- Description of the bot. It appears in lists to help you identify a particular bot.
- Idle
Session intTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- Members
[]V2models
Bot Member Args - List of bot members in a network to be created. See
bot_members
. - Name string
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- Role
Arn string ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- map[string]string
- List of tags to add to the bot. You can only add tags when you create a bot.
- map[string]string
- map[string]string
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- Timeouts
V2models
Bot Timeouts Args - Type string
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- arn String
- data
Privacies List<V2modelsBot Data Privacy> - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- description String
- Description of the bot. It appears in lists to help you identify a particular bot.
- idle
Session IntegerTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- members
List<V2models
Bot Member> - List of bot members in a network to be created. See
bot_members
. - name String
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- role
Arn String ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- Map<String,String>
- List of tags to add to the bot. You can only add tags when you create a bot.
- Map<String,String>
- Map<String,String>
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- timeouts
V2models
Bot Timeouts - type String
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- arn string
- data
Privacies V2modelsBot Data Privacy[] - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- description string
- Description of the bot. It appears in lists to help you identify a particular bot.
- idle
Session numberTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- members
V2models
Bot Member[] - List of bot members in a network to be created. See
bot_members
. - name string
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- role
Arn string ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- {[key: string]: string}
- List of tags to add to the bot. You can only add tags when you create a bot.
- {[key: string]: string}
- {[key: string]: string}
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- timeouts
V2models
Bot Timeouts - type string
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- arn str
- data_
privacies Sequence[V2modelsBot Data Privacy Args] - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- description str
- Description of the bot. It appears in lists to help you identify a particular bot.
- idle_
session_ intttl_ in_ seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- members
Sequence[V2models
Bot Member Args] - List of bot members in a network to be created. See
bot_members
. - name str
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- role_
arn str ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- Mapping[str, str]
- List of tags to add to the bot. You can only add tags when you create a bot.
- Mapping[str, str]
- Mapping[str, str]
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- timeouts
V2models
Bot Timeouts Args - type str
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
- arn String
- data
Privacies List<Property Map> - Provides information on additional privacy protections Amazon Lex should use with the bot's data. See
data_privacy
- description String
- Description of the bot. It appears in lists to help you identify a particular bot.
- idle
Session NumberTtl In Seconds - Time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
- members List<Property Map>
- List of bot members in a network to be created. See
bot_members
. - name String
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- role
Arn String ARN of an IAM role that has permission to access the bot.
The following arguments are optional:
- Map<String>
- List of tags to add to the bot. You can only add tags when you create a bot.
- Map<String>
- Map<String>
- List of tags to add to the test alias for a bot. You can only add tags when you create a bot.
- timeouts Property Map
- type String
- Type of a bot to create. Possible values are
"Bot"
and"BotNetwork"
.
Supporting Types
V2modelsBotDataPrivacy, V2modelsBotDataPrivacyArgs
- Child
Directed bool - (Required) - For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying true or false in the childDirected field.
- Child
Directed bool - (Required) - For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying true or false in the childDirected field.
- child
Directed Boolean - (Required) - For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying true or false in the childDirected field.
- child
Directed boolean - (Required) - For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying true or false in the childDirected field.
- child_
directed bool - (Required) - For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying true or false in the childDirected field.
- child
Directed Boolean - (Required) - For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying true or false in the childDirected field.
V2modelsBotMember, V2modelsBotMemberArgs
- Alias
Id string - (Required) - Alias ID of a bot that is a member of this network of bots.
- Alias
Name string - (Required) - Alias name of a bot that is a member of this network of bots.
- Id string
- (Required) - Unique ID of a bot that is a member of this network of bots.
- Name string
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- Version string
- (Required) - Version of a bot that is a member of this network of bots.
- Alias
Id string - (Required) - Alias ID of a bot that is a member of this network of bots.
- Alias
Name string - (Required) - Alias name of a bot that is a member of this network of bots.
- Id string
- (Required) - Unique ID of a bot that is a member of this network of bots.
- Name string
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- Version string
- (Required) - Version of a bot that is a member of this network of bots.
- alias
Id String - (Required) - Alias ID of a bot that is a member of this network of bots.
- alias
Name String - (Required) - Alias name of a bot that is a member of this network of bots.
- id String
- (Required) - Unique ID of a bot that is a member of this network of bots.
- name String
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- version String
- (Required) - Version of a bot that is a member of this network of bots.
- alias
Id string - (Required) - Alias ID of a bot that is a member of this network of bots.
- alias
Name string - (Required) - Alias name of a bot that is a member of this network of bots.
- id string
- (Required) - Unique ID of a bot that is a member of this network of bots.
- name string
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- version string
- (Required) - Version of a bot that is a member of this network of bots.
- alias_
id str - (Required) - Alias ID of a bot that is a member of this network of bots.
- alias_
name str - (Required) - Alias name of a bot that is a member of this network of bots.
- id str
- (Required) - Unique ID of a bot that is a member of this network of bots.
- name str
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- version str
- (Required) - Version of a bot that is a member of this network of bots.
- alias
Id String - (Required) - Alias ID of a bot that is a member of this network of bots.
- alias
Name String - (Required) - Alias name of a bot that is a member of this network of bots.
- id String
- (Required) - Unique ID of a bot that is a member of this network of bots.
- name String
- Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
- version String
- (Required) - Version of a bot that is a member of this network of bots.
V2modelsBotTimeouts, V2modelsBotTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration 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.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration 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.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration 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.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration 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.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration 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.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration 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.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
Using pulumi import
, import Lex V2 Models Bot using the id
. For example:
$ pulumi import aws:lex/v2modelsBot:V2modelsBot example bot-id-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.