Class: Aws::Kendra::Types::DataSourceSyncJobMetricTarget

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kendra/types.rb

Overview

Maps a particular data source sync job to a particular data source.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#data_source_idString

The ID of the data source that is running the sync job.

Returns:

  • (String)


3032
3033
3034
3035
3036
3037
# File 'lib/aws-sdk-kendra/types.rb', line 3032

class DataSourceSyncJobMetricTarget < Struct.new(
  :data_source_id,
  :data_source_sync_job_id)
  SENSITIVE = []
  include Aws::Structure
end

#data_source_sync_job_idString

The ID of the sync job that is running on the data source.

If the ID of a sync job is not provided and there is a sync job running, then the ID of this sync job is used and metrics are generated for this sync job.

If the ID of a sync job is not provided and there is no sync job running, then no metrics are generated and documents are indexed/deleted at the index level without sync job metrics included.

Returns:

  • (String)


3032
3033
3034
3035
3036
3037
# File 'lib/aws-sdk-kendra/types.rb', line 3032

class DataSourceSyncJobMetricTarget < Struct.new(
  :data_source_id,
  :data_source_sync_job_id)
  SENSITIVE = []
  include Aws::Structure
end