UpdateTrialComponentRequest
public struct UpdateTrialComponentRequest : 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? -
Replaces all of the component’s input artifacts with the specified artifacts.
Declaration
Swift
public let inputArtifacts: [String : TrialComponentArtifact]? -
The input artifacts to remove from the component.
Declaration
Swift
public let inputArtifactsToRemove: [String]? -
Replaces all of the component’s output artifacts with the specified artifacts.
Declaration
Swift
public let outputArtifacts: [String : TrialComponentArtifact]? -
The output artifacts to remove from the component.
Declaration
Swift
public let outputArtifactsToRemove: [String]? -
Replaces all of the component’s hyperparameters with the specified hyperparameters.
Declaration
Swift
public let parameters: [String : TrialComponentParameterValue]? -
The hyperparameters to remove from the component.
Declaration
Swift
public let parametersToRemove: [String]? -
When the component started.
Declaration
Swift
public let startTime: TimeStamp? -
The new status of the component.
Declaration
Swift
public let status: TrialComponentStatus? -
The name of the component to update.
Declaration
Swift
public let trialComponentName: String -
init(displayName:endTime:inputArtifacts:inputArtifactsToRemove:outputArtifacts:outputArtifactsToRemove:parameters:parametersToRemove:startTime:status:trialComponentName:)Undocumented
Declaration
Swift
public init(displayName: String? = nil, endTime: TimeStamp? = nil, inputArtifacts: [String : TrialComponentArtifact]? = nil, inputArtifactsToRemove: [String]? = nil, outputArtifacts: [String : TrialComponentArtifact]? = nil, outputArtifactsToRemove: [String]? = nil, parameters: [String : TrialComponentParameterValue]? = nil, parametersToRemove: [String]? = nil, startTime: TimeStamp? = nil, status: TrialComponentStatus? = nil, trialComponentName: String) -
Declaration
Swift
public func validate(name: String) throws
View on GitHub
UpdateTrialComponentRequest Structure Reference