Class: Aws::LexModelsV2::Types::CreateExportRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::CreateExportRequest
- Includes:
- Structure
- Defined in:
- 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.
3865 3866 3867 3868 3869 3870 3871 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 3865 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.
3865 3866 3867 3868 3869 3870 3871 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 3865 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.
3865 3866 3867 3868 3869 3870 3871 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 3865 class CreateExportRequest < Struct.new( :resource_specification, :file_format, :file_password) SENSITIVE = [:file_password] include Aws::Structure end |