Describe Feature Metadata
sagemaker_describe_feature_metadata | R Documentation |
Shows the metadata for a feature within a feature group¶
Description¶
Shows the metadata for a feature within a feature group.
Usage¶
Arguments¶
FeatureGroupName
[required] The name or Amazon Resource Name (ARN) of the feature group containing the feature.
FeatureName
[required] The name of the feature.
Value¶
A list with the following syntax:
list(
FeatureGroupArn = "string",
FeatureGroupName = "string",
FeatureName = "string",
FeatureType = "Integral"|"Fractional"|"String",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
Description = "string",
Parameters = list(
list(
Key = "string",
Value = "string"
)
)
)