JoinDomainInput

public struct JoinDomainInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • List of IPv4 addresses, NetBIOS names, or host names of your domain server. If you need to specify the port number include it after the colon (“:”). For example, mydc.mydomain.com:389.

    Declaration

    Swift

    public let domainControllers: [String]?
  • The name of the domain that you want the gateway to join.

    Declaration

    Swift

    public let domainName: String
  • The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and AWS Region.

    Declaration

    Swift

    public let gatewayARN: String
  • The organizational unit (OU) is a container in an Active Directory that can hold users, groups, computers, and other OUs and this parameter specifies the OU that the gateway will join within the AD domain.

    Declaration

    Swift

    public let organizationalUnit: String?
  • Sets the password of the user who has permission to add the gateway to the Active Directory domain.

    Declaration

    Swift

    public let password: String
  • Specifies the time in seconds, in which the JoinDomain operation must complete. The default is 20 seconds.

    Declaration

    Swift

    public let timeoutInSeconds: Int?
  • Sets the user name of user who has permission to add the gateway to the Active Directory domain. The domain user account should be enabled to join computers to the domain. For example, you can use the domain administrator account or an account with delegated permissions to join computers to the domain.

    Declaration

    Swift

    public let userName: String
  • Undocumented

    Declaration

    Swift

    public init(domainControllers: [String]? = nil, domainName: String, gatewayARN: String, organizationalUnit: String? = nil, password: String, timeoutInSeconds: Int? = nil, userName: String)
  • Declaration

    Swift

    public func validate(name: String) throws