CreateHostInput
public struct CreateHostInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the host to be created. The name must be unique in the calling AWS account.
Declaration
Swift
public let name: String
-
The endpoint of the infrastructure to be represented by the host after it is created.
Declaration
Swift
public let providerEndpoint: String
-
The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.
Declaration
Swift
public let providerType: ProviderType
-
The VPC configuration to be provisioned for the host. A VPC must be configured and the infrastructure to be represented by the host must already be connected to the VPC.
Declaration
Swift
public let vpcConfiguration: VpcConfiguration?
-
Undocumented
Declaration
Swift
public init(name: String, providerEndpoint: String, providerType: ProviderType, vpcConfiguration: VpcConfiguration? = nil)
-
Declaration
Swift
public func validate(name: String) throws