PartitionInput

public struct PartitionInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The last time at which the partition was accessed.

    Declaration

    Swift

    public let lastAccessTime: TimeStamp?
  • The last time at which column statistics were computed for this partition.

    Declaration

    Swift

    public let lastAnalyzedTime: TimeStamp?
  • These key-value pairs define partition parameters.

    Declaration

    Swift

    public let parameters: [String : String]?
  • Provides information about the physical location where the partition is stored.

    Declaration

    Swift

    public let storageDescriptor: StorageDescriptor?
  • The values of the partition. Although this parameter is not required by the SDK, you must specify this parameter for a valid input. The values for the keys for the new partition must be passed as an array of String objects that must be ordered in the same order as the partition keys appearing in the Amazon S3 prefix. Otherwise AWS Glue will add the values to the wrong keys.

    Declaration

    Swift

    public let values: [String]?
  • Undocumented

    Declaration

    Swift

    public init(lastAccessTime: TimeStamp? = nil, lastAnalyzedTime: TimeStamp? = nil, parameters: [String : String]? = nil, storageDescriptor: StorageDescriptor? = nil, values: [String]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws