GetConnectionRequest
public struct GetConnectionRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ID of the Data Catalog in which the connection resides. If none is provided, the AWS account ID is used by default.
Declaration
Swift
public let catalogId: String?
-
Allows you to retrieve the connection metadata without returning the password. For instance, the AWS Glue console uses this flag to retrieve the connection, and does not display the password. Set this parameter when the caller might not have permission to use the AWS KMS key to decrypt the password, but it does have permission to access the rest of the connection properties.
Declaration
Swift
public let hidePassword: Bool?
-
The name of the connection definition to retrieve.
Declaration
Swift
public let name: String
-
Undocumented
Declaration
Swift
public init(catalogId: String? = nil, hidePassword: Bool? = nil, name: String)
-
Declaration
Swift
public func validate(name: String) throws