GetExportResponse
public struct GetExportResponse : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The status of the export. IN_PROGRESS - The export is in progress. READY - The export is complete. FAILED - The export could not be completed.
Declaration
Swift
public let exportStatus: ExportStatus?
-
The format of the exported data.
Declaration
Swift
public let exportType: ExportType?
-
If status is FAILED, Amazon Lex provides the reason that it failed to export the resource.
Declaration
Swift
public let failureReason: String?
-
The name of the bot being exported.
Declaration
Swift
public let name: String?
-
The type of the exported resource.
Declaration
Swift
public let resourceType: ResourceType?
-
An S3 pre-signed URL that provides the location of the exported resource. The exported resource is a ZIP archive that contains the exported resource in JSON format. The structure of the archive may change. Your code should not rely on the archive structure.
Declaration
Swift
public let url: String?
-
The version of the bot being exported.
Declaration
Swift
public let version: String?
-
Undocumented
Declaration
Swift
public init(exportStatus: ExportStatus? = nil, exportType: ExportType? = nil, failureReason: String? = nil, name: String? = nil, resourceType: ResourceType? = nil, url: String? = nil, version: String? = nil)