CreateComputerRequest

public struct CreateComputerRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • An array of Attribute objects that contain any LDAP attributes to apply to the computer account.

    Declaration

    Swift

    public let computerAttributes: [Attribute]?
  • The name of the computer account.

    Declaration

    Swift

    public let computerName: String
  • The identifier of the directory in which to create the computer account.

    Declaration

    Swift

    public let directoryId: String
  • The fully-qualified distinguished name of the organizational unit to place the computer account in.

    Declaration

    Swift

    public let organizationalUnitDistinguishedName: String?
  • A one-time password that is used to join the computer to the directory. You should generate a random, strong password to use for this parameter.

    Declaration

    Swift

    public let password: String
  • Undocumented

    Declaration

    Swift

    public init(computerAttributes: [Attribute]? = nil, computerName: String, directoryId: String, organizationalUnitDistinguishedName: String? = nil, password: String)
  • Declaration

    Swift

    public func validate(name: String) throws