CreateExperimentRequest

public struct CreateExperimentRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The description of the experiment.

    Declaration

    Swift

    public let description: String?
  • The name of the experiment as displayed. The name doesn’t need to be unique. If you don’t specify DisplayName, the value in ExperimentName is displayed.

    Declaration

    Swift

    public let displayName: String?
  • The name of the experiment. The name must be unique in your AWS account and is not case-sensitive.

    Declaration

    Swift

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

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

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

    Swift

    public func validate(name: String) throws