CreateTrialRequest

public struct CreateTrialRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the trial as displayed. The name doesn’t need to be unique. If DisplayName isn’t specified, TrialName is displayed.

    Declaration

    Swift

    public let displayName: String?
  • The name of the experiment to associate the trial with.

    Declaration

    Swift

    public let experimentName: String
  • A list of tags to associate with the trial. You can use Search API to search on the tags.

    Declaration

    Swift

    public let tags: [Tag]?
  • The name of the trial. The name must be unique in your AWS account and is not case-sensitive.

    Declaration

    Swift

    public let trialName: String
  • Undocumented

    Declaration

    Swift

    public init(displayName: String? = nil, experimentName: String, tags: [Tag]? = nil, trialName: String)
  • Declaration

    Swift

    public func validate(name: String) throws