DescribeTypeInput
public struct DescribeTypeInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The Amazon Resource Name (ARN) of the type. Conditional: You must specify either TypeName and Type, or Arn.
Declaration
Swift
public let arn: String?
-
The kind of type. Currently the only valid value is RESOURCE. Conditional: You must specify either TypeName and Type, or Arn.
Declaration
Swift
public let type: RegistryType?
-
The name of the type. Conditional: You must specify either TypeName and Type, or Arn.
Declaration
Swift
public let typeName: String?
-
The ID of a specific version of the type. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the type version when it is registered. If you specify a VersionId, DescribeType returns information about that specific type version. Otherwise, it returns information about the default type version.
Declaration
Swift
public let versionId: String?
-
Undocumented
Declaration
Swift
public init(arn: String? = nil, type: RegistryType? = nil, typeName: String? = nil, versionId: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws