DescribeDataSourceResponse

public struct DescribeDataSourceResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Information that describes where the data source is located and how the data source is configured. The specific information in the description depends on the data source provider.

    Declaration

    Swift

    public let configuration: DataSourceConfiguration?
  • The Unix timestamp of when the data source was created.

    Declaration

    Swift

    public let createdAt: TimeStamp?
  • The description of the data source.

    Declaration

    Swift

    public let description: String?
  • When the Status field value is FAILED, the ErrorMessage field contains a description of the error that caused the data source to fail.

    Declaration

    Swift

    public let errorMessage: String?
  • id

    The identifier of the data source.

    Declaration

    Swift

    public let id: String?
  • The identifier of the index that contains the data source.

    Declaration

    Swift

    public let indexId: String?
  • The name that you gave the data source when it was created.

    Declaration

    Swift

    public let name: String?
  • The Amazon Resource Name (ARN) of the role that enables the data source to access its resources.

    Declaration

    Swift

    public let roleArn: String?
  • The schedule that Amazon Kendra will update the data source.

    Declaration

    Swift

    public let schedule: String?
  • The current status of the data source. When the status is ACTIVE the data source is ready to use. When the status is FAILED, the ErrorMessage field contains the reason that the data source failed.

    Declaration

    Swift

    public let status: DataSourceStatus?
  • The type of the data source.

    Declaration

    Swift

    public let type: DataSourceType?
  • The Unix timestamp of when the data source was last updated.

    Declaration

    Swift

    public let updatedAt: TimeStamp?
  • Undocumented

    Declaration

    Swift

    public init(configuration: DataSourceConfiguration? = nil, createdAt: TimeStamp? = nil, description: String? = nil, errorMessage: String? = nil, id: String? = nil, indexId: String? = nil, name: String? = nil, roleArn: String? = nil, schedule: String? = nil, status: DataSourceStatus? = nil, type: DataSourceType? = nil, updatedAt: TimeStamp? = nil)