ResizeProgressMessage

public struct ResizeProgressMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The average rate of the resize operation over the last few minutes, measured in megabytes per second. After the resize operation completes, this value shows the average rate of the entire resize operation.

    Declaration

    Swift

    public let avgResizeRateInMegaBytesPerSecond: Double?
  • The percent of data transferred from source cluster to target cluster.

    Declaration

    Swift

    public let dataTransferProgressPercent: Double?
  • The amount of seconds that have elapsed since the resize operation began. After the resize operation completes, this value shows the total actual time, in seconds, for the resize operation.

    Declaration

    Swift

    public let elapsedTimeInSeconds: Int64?
  • The estimated time remaining, in seconds, until the resize operation is complete. This value is calculated based on the average resize rate and the estimated amount of data remaining to be processed. Once the resize operation is complete, this value will be 0.

    Declaration

    Swift

    public let estimatedTimeToCompletionInSeconds: Int64?
  • The names of tables that have been completely imported . Valid Values: List of table names.

    Declaration

    Swift

    public let importTablesCompleted: [String]?
  • The names of tables that are being currently imported. Valid Values: List of table names.

    Declaration

    Swift

    public let importTablesInProgress: [String]?
  • The names of tables that have not been yet imported. Valid Values: List of table names

    Declaration

    Swift

    public let importTablesNotStarted: [String]?
  • An optional string to provide additional details about the resize action.

    Declaration

    Swift

    public let message: String?
  • While the resize operation is in progress, this value shows the current amount of data, in megabytes, that has been processed so far. When the resize operation is complete, this value shows the total amount of data, in megabytes, on the cluster, which may be more or less than TotalResizeDataInMegaBytes (the estimated total amount of data before resize).

    Declaration

    Swift

    public let progressInMegaBytes: Int64?
  • An enum with possible values of ClassicResize and ElasticResize. These values describe the type of resize operation being performed.

    Declaration

    Swift

    public let resizeType: String?
  • The status of the resize operation. Valid Values: NONE | IN_PROGRESS | FAILED | SUCCEEDED | CANCELLING

    Declaration

    Swift

    public let status: String?
  • The cluster type after the resize operation is complete. Valid Values: multi-node | single-node

    Declaration

    Swift

    public let targetClusterType: String?
  • The type of encryption for the cluster after the resize is complete. Possible values are KMS and None.

    Declaration

    Swift

    public let targetEncryptionType: String?
  • The node type that the cluster will have after the resize operation is complete.

    Declaration

    Swift

    public let targetNodeType: String?
  • The number of nodes that the cluster will have after the resize operation is complete.

    Declaration

    Swift

    public let targetNumberOfNodes: Int?
  • The estimated total amount of data, in megabytes, on the cluster before the resize operation began.

    Declaration

    Swift

    public let totalResizeDataInMegaBytes: Int64?
  • Undocumented

    Declaration

    Swift

    public init(avgResizeRateInMegaBytesPerSecond: Double? = nil, dataTransferProgressPercent: Double? = nil, elapsedTimeInSeconds: Int64? = nil, estimatedTimeToCompletionInSeconds: Int64? = nil, importTablesCompleted: [String]? = nil, importTablesInProgress: [String]? = nil, importTablesNotStarted: [String]? = nil, message: String? = nil, progressInMegaBytes: Int64? = nil, resizeType: String? = nil, status: String? = nil, targetClusterType: String? = nil, targetEncryptionType: String? = nil, targetNodeType: String? = nil, targetNumberOfNodes: Int? = nil, totalResizeDataInMegaBytes: Int64? = nil)