Class: Aws::LookoutEquipment::Types::IngestionS3InputConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutEquipment::Types::IngestionS3InputConfiguration
- Defined in:
- gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb
Overview
Specifies S3 configuration information for the input data for the data ingestion job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the S3 bucket used for the input data for the data ingestion.
-
#key_pattern ⇒ String
The pattern for matching the Amazon S3 files that will be used for ingestion.
-
#prefix ⇒ String
The prefix for the S3 location being used for the input data for the data ingestion.
Instance Attribute Details
#bucket ⇒ String
The name of the S3 bucket used for the input data for the data ingestion.
2584 2585 2586 2587 2588 2589 2590 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 2584 class IngestionS3InputConfiguration < Struct.new( :bucket, :prefix, :key_pattern) SENSITIVE = [] include Aws::Structure end |
#key_pattern ⇒ String
The pattern for matching the Amazon S3 files that will be used for ingestion. If the schema was created previously without any KeyPattern, then the default KeyPattern #prefix/component_name/* is used to download files from Amazon S3 according to the schema. This field is required when ingestion is being done for the first time.
Valid Values: #prefix/component_name_ | #prefix/component_name/ | #prefix/component_name[DELIMITER]* (Allowed delimiters : space, dot, underscore, hyphen)
2584 2585 2586 2587 2588 2589 2590 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 2584 class IngestionS3InputConfiguration < Struct.new( :bucket, :prefix, :key_pattern) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
The prefix for the S3 location being used for the input data for the data ingestion.
2584 2585 2586 2587 2588 2589 2590 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 2584 class IngestionS3InputConfiguration < Struct.new( :bucket, :prefix, :key_pattern) SENSITIVE = [] include Aws::Structure end |