Class: Aws::LexModelsV2::Types::StartImportRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::StartImportRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:file_password]
Instance Attribute Summary collapse
-
#file_password ⇒ String
The password used to encrypt the zip archive that contains the resource definition.
-
#import_id ⇒ String
The unique identifier for the import.
-
#merge_strategy ⇒ String
The strategy to use when there is a name conflict between the imported resource and an existing resource.
-
#resource_specification ⇒ Types::ImportResourceSpecification
Parameters for creating the bot, bot locale or custom vocabulary.
Instance Attribute Details
#file_password ⇒ String
The password used to encrypt the zip archive that contains the resource definition. You should always encrypt the zip archive to protect it during transit between your site and Amazon Lex.
13071 13072 13073 13074 13075 13076 13077 13078 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 13071 class StartImportRequest < Struct.new( :import_id, :resource_specification, :merge_strategy, :file_password) SENSITIVE = [:file_password] include Aws::Structure end |
#import_id ⇒ String
The unique identifier for the import. It is included in the response from the [CreateUploadUrl] operation.
[1]: docs.aws.amazon.com/lexv2/latest/APIReference/API_CreateUploadUrl.html
13071 13072 13073 13074 13075 13076 13077 13078 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 13071 class StartImportRequest < Struct.new( :import_id, :resource_specification, :merge_strategy, :file_password) SENSITIVE = [:file_password] include Aws::Structure end |
#merge_strategy ⇒ String
The strategy to use when there is a name conflict between the imported resource and an existing resource. When the merge strategy is ‘FailOnConflict` existing resources are not overwritten and the import fails.
13071 13072 13073 13074 13075 13076 13077 13078 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 13071 class StartImportRequest < Struct.new( :import_id, :resource_specification, :merge_strategy, :file_password) SENSITIVE = [:file_password] include Aws::Structure end |
#resource_specification ⇒ Types::ImportResourceSpecification
Parameters for creating the bot, bot locale or custom vocabulary.
13071 13072 13073 13074 13075 13076 13077 13078 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 13071 class StartImportRequest < Struct.new( :import_id, :resource_specification, :merge_strategy, :file_password) SENSITIVE = [:file_password] include Aws::Structure end |