Create Explainability Export
forecastservice_create_explainability_export | R Documentation |
Exports an Explainability resource created by the CreateExplainability operation¶
Description¶
Exports an Explainability resource created by the
create_explainability
operation. Exported files are exported to an
Amazon Simple Storage Service (Amazon S3) bucket.
You must specify a DataDestination object that includes an Amazon S3 bucket and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket. For more information, see aws-forecast-iam-roles.
The Status
of the export job must be ACTIVE
before you can access
the export in your Amazon S3 bucket. To get the status, use the
describe_explainability_export
operation.
Usage¶
forecastservice_create_explainability_export(ExplainabilityExportName,
ExplainabilityArn, Destination, Tags, Format)
Arguments¶
ExplainabilityExportName |
[required] A unique name for the Explainability export. |
ExplainabilityArn |
[required] The Amazon Resource Name (ARN) of the Explainability to export. |
Destination |
[required] |
Tags |
Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional value, both of which you define. Tag keys and values are case sensitive. The following restrictions apply to tags:
|
Format |
The format of the exported data, CSV or PARQUET. |
Value¶
A list with the following syntax:
list(
ExplainabilityExportArn = "string"
)
Request syntax¶
svc$create_explainability_export(
ExplainabilityExportName = "string",
ExplainabilityArn = "string",
Destination = list(
S3Config = list(
Path = "string",
RoleArn = "string",
KMSKeyArn = "string"
)
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
Format = "string"
)