Class: Aws::LexModelsV2::Types::CreateExportRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::CreateExportRequest
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:file_password]
Instance Attribute Summary collapse
-
#file_format ⇒ String
The file format of the bot or bot locale definition files.
-
#file_password ⇒ String
An password to use to encrypt the exported archive.
-
#resource_specification ⇒ Types::ExportResourceSpecification
Specifies the type of resource to export, either a bot or a bot locale.
Instance Attribute Details
#file_format ⇒ String
The file format of the bot or bot locale definition files.
3604 3605 3606 3607 3608 3609 3610 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 3604 class CreateExportRequest < Struct.new( :resource_specification, :file_format, :file_password) SENSITIVE = [:file_password] include Aws::Structure end |
#file_password ⇒ String
An password to use to encrypt the exported archive. Using a password is optional, but you should encrypt the archive to protect the data in transit between Amazon Lex and your local computer.
3604 3605 3606 3607 3608 3609 3610 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 3604 class CreateExportRequest < Struct.new( :resource_specification, :file_format, :file_password) SENSITIVE = [:file_password] include Aws::Structure end |
#resource_specification ⇒ Types::ExportResourceSpecification
Specifies the type of resource to export, either a bot or a bot locale. You can only specify one type of resource to export.
3604 3605 3606 3607 3608 3609 3610 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 3604 class CreateExportRequest < Struct.new( :resource_specification, :file_format, :file_password) SENSITIVE = [:file_password] include Aws::Structure end |