CreateConnectionInput
public struct CreateConnectionInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the connection to be created. The name must be unique in the calling AWS account.
Declaration
Swift
public let connectionName: String
-
The Amazon Resource Name (ARN) of the host associated with the connection to be created.
Declaration
Swift
public let hostArn: String?
-
The name of the external provider where your third-party code repository is configured. The valid provider type is Bitbucket.
Declaration
Swift
public let providerType: ProviderType?
-
The key-value pair to use when tagging the resource.
Declaration
Swift
public let tags: [Tag]?
-
Undocumented
Declaration
Swift
public init(connectionName: String, hostArn: String? = nil, providerType: ProviderType? = nil, tags: [Tag]? = nil)
-
Declaration
Swift
public func validate(name: String) throws