Describe Experiment
sagemaker_describe_experiment | R Documentation |
Provides a list of an experiment's properties¶
Description¶
Provides a list of an experiment's properties.
Usage¶
Arguments¶
ExperimentName
[required] The name of the experiment to describe.
Value¶
A list with the following syntax:
list(
ExperimentName = "string",
ExperimentArn = "string",
DisplayName = "string",
Source = list(
SourceArn = "string",
SourceType = "string"
),
Description = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
CreatedBy = list(
UserProfileArn = "string",
UserProfileName = "string",
DomainId = "string",
IamIdentity = list(
Arn = "string",
PrincipalId = "string",
SourceIdentity = "string"
)
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedBy = list(
UserProfileArn = "string",
UserProfileName = "string",
DomainId = "string",
IamIdentity = list(
Arn = "string",
PrincipalId = "string",
SourceIdentity = "string"
)
)
)