CreateTrialComponentRequest
public struct CreateTrialComponentRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the component as displayed. The name doesn’t need to be unique. If DisplayName isn’t specified, TrialComponentName is displayed.
Declaration
Swift
public let displayName: String?
-
When the component ended.
Declaration
Swift
public let endTime: TimeStamp?
-
The input artifacts for the component. Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types.
Declaration
Swift
public let inputArtifacts: [String : TrialComponentArtifact]?
-
The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.
Declaration
Swift
public let outputArtifacts: [String : TrialComponentArtifact]?
-
The hyperparameters for the component.
Declaration
Swift
public let parameters: [String : TrialComponentParameterValue]?
-
When the component started.
Declaration
Swift
public let startTime: TimeStamp?
-
The status of the component. States include: InProgress Completed Failed
Declaration
Swift
public let status: TrialComponentStatus?
-
A list of tags to associate with the component. You can use Search API to search on the tags.
Declaration
Swift
public let tags: [Tag]?
-
The name of the component. The name must be unique in your AWS account and is not case-sensitive.
Declaration
Swift
public let trialComponentName: String
-
init(displayName:endTime:inputArtifacts:outputArtifacts:parameters:startTime:status:tags:trialComponentName:)
Undocumented
Declaration
Swift
public init(displayName: String? = nil, endTime: TimeStamp? = nil, inputArtifacts: [String : TrialComponentArtifact]? = nil, outputArtifacts: [String : TrialComponentArtifact]? = nil, parameters: [String : TrialComponentParameterValue]? = nil, startTime: TimeStamp? = nil, status: TrialComponentStatus? = nil, tags: [Tag]? = nil, trialComponentName: String)
-
Declaration
Swift
public func validate(name: String) throws