Describe What If Analysis
forecastservice_describe_what_if_analysis | R Documentation |
Describes the what-if analysis created using the CreateWhatIfAnalysis operation¶
Description¶
Describes the what-if analysis created using the
create_what_if_analysis
operation.
In addition to listing the properties provided in the
create_what_if_analysis
request, this operation lists the following
properties:
-
CreationTime
-
LastModificationTime
-
Message
- If an error occurred, information about the error. -
Status
Usage¶
Arguments¶
WhatIfAnalysisArn
[required] The Amazon Resource Name (ARN) of the what-if analysis that you are interested in.
Value¶
A list with the following syntax:
list(
WhatIfAnalysisName = "string",
WhatIfAnalysisArn = "string",
ForecastArn = "string",
EstimatedTimeRemainingInMinutes = 123,
Status = "string",
Message = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModificationTime = as.POSIXct(
"2015-01-01"
),
TimeSeriesSelector = list(
TimeSeriesIdentifiers = list(
DataSource = list(
S3Config = list(
Path = "string",
RoleArn = "string",
KMSKeyArn = "string"
)
),
Schema = list(
Attributes = list(
list(
AttributeName = "string",
AttributeType = "string"|"integer"|"float"|"timestamp"|"geolocation"
)
)
),
Format = "string"
)
)
)