pub struct DescribeTableRestoreStatusMessage {
pub cluster_identifier: Option<String>,
pub marker: Option<String>,
pub max_records: Option<i64>,
pub table_restore_request_id: Option<String>,
}
Expand description
Fields§
§cluster_identifier: Option<String>
The Amazon Redshift cluster that the table is being restored to.
marker: Option<String>
An optional pagination token provided by a previous DescribeTableRestoreStatus
request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords
parameter.
max_records: Option<i64>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
table_restore_request_id: Option<String>
The identifier of the table restore request to return status for. If you don't specify a TableRestoreRequestId
value, then DescribeTableRestoreStatus
returns the status of all in-progress table restore requests.
Trait Implementations§
Source§impl Clone for DescribeTableRestoreStatusMessage
impl Clone for DescribeTableRestoreStatusMessage
Source§fn clone(&self) -> DescribeTableRestoreStatusMessage
fn clone(&self) -> DescribeTableRestoreStatusMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DescribeTableRestoreStatusMessage
impl Default for DescribeTableRestoreStatusMessage
Source§fn default() -> DescribeTableRestoreStatusMessage
fn default() -> DescribeTableRestoreStatusMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeTableRestoreStatusMessage
impl PartialEq for DescribeTableRestoreStatusMessage
Source§fn eq(&self, other: &DescribeTableRestoreStatusMessage) -> bool
fn eq(&self, other: &DescribeTableRestoreStatusMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeTableRestoreStatusMessage
Auto Trait Implementations§
impl Freeze for DescribeTableRestoreStatusMessage
impl RefUnwindSafe for DescribeTableRestoreStatusMessage
impl Send for DescribeTableRestoreStatusMessage
impl Sync for DescribeTableRestoreStatusMessage
impl Unpin for DescribeTableRestoreStatusMessage
impl UnwindSafe for DescribeTableRestoreStatusMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more