[−][src]Struct rusoto_redshift::Snapshot
Describes a snapshot.
Fields
accounts_with_restore_access: Option<Vec<AccountWithRestoreAccess>>
A list of the AWS customer accounts authorized to restore the snapshot. Returns null
if no accounts are authorized. Visible only to the snapshot owner.
actual_incremental_backup_size_in_mega_bytes: Option<f64>
The size of the incremental backup.
availability_zone: Option<String>
The Availability Zone in which the cluster was created.
backup_progress_in_mega_bytes: Option<f64>
The number of megabytes that have been transferred to the snapshot backup.
cluster_create_time: Option<String>
The time (UTC) when the cluster was originally created.
cluster_identifier: Option<String>
The identifier of the cluster for which the snapshot was taken.
cluster_version: Option<String>
The version ID of the Amazon Redshift engine that is running on the cluster.
current_backup_rate_in_mega_bytes_per_second: Option<f64>
The number of megabytes per second being transferred to the snapshot backup. Returns 0
for a completed backup.
db_name: Option<String>
The name of the database that was created when the cluster was created.
elapsed_time_in_seconds: Option<i64>
The amount of time an in-progress snapshot backup has been running, or the amount of time it took a completed backup to finish.
encrypted: Option<bool>
If true
, the data in the snapshot is encrypted at rest.
encrypted_with_hsm: Option<bool>
A boolean that indicates whether the snapshot data is encrypted using the HSM keys of the source cluster. true
indicates that the data is encrypted using HSM keys.
enhanced_vpc_routing: Option<bool>
An option that specifies whether to create the cluster with enhanced VPC routing enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a VPC. For more information, see Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.
If this option is true
, enhanced VPC routing is enabled.
Default: false
estimated_seconds_to_completion: Option<i64>
The estimate of the time remaining before the snapshot backup will complete. Returns 0
for a completed backup.
kms_key_id: Option<String>
The AWS Key Management Service (KMS) key ID of the encryption key that was used to encrypt data in the cluster from which the snapshot was taken.
maintenance_track_name: Option<String>
The name of the maintenance track for the snapshot.
manual_snapshot_remaining_days: Option<i64>
The number of days until a manual snapshot will pass its retention period.
manual_snapshot_retention_period: Option<i64>
The number of days that a manual snapshot is retained. If the value is -1, the manual snapshot is retained indefinitely.
The value must be either -1 or an integer between 1 and 3,653.
master_username: Option<String>
The master user name for the cluster.
node_type: Option<String>
The node type of the nodes in the cluster.
number_of_nodes: Option<i64>
The number of nodes in the cluster.
owner_account: Option<String>
For manual snapshots, the AWS customer account used to create or copy the snapshot. For automatic snapshots, the owner of the cluster. The owner can perform all snapshot actions, such as sharing a manual snapshot.
port: Option<i64>
The port that the cluster is listening on.
restorable_node_types: Option<Vec<String>>
The list of node types that this cluster snapshot is able to restore into.
snapshot_create_time: Option<String>
The time (in UTC format) when Amazon Redshift began the snapshot. A snapshot contains a copy of the cluster data as of this exact time.
snapshot_identifier: Option<String>
The snapshot identifier that is provided in the request.
snapshot_retention_start_time: Option<String>
A timestamp representing the start of the retention period for the snapshot.
snapshot_type: Option<String>
The snapshot type. Snapshots created using CreateClusterSnapshot and CopyClusterSnapshot are of type "manual".
source_region: Option<String>
The source region from which the snapshot was copied.
status: Option<String>
The snapshot status. The value of the status depends on the API operation used:
-
CreateClusterSnapshot and CopyClusterSnapshot returns status as "creating".
-
DescribeClusterSnapshots returns status as "creating", "available", "final snapshot", or "failed".
-
DeleteClusterSnapshot returns status as "deleted".
The list of tags for the cluster snapshot.
total_backup_size_in_mega_bytes: Option<f64>
The size of the complete set of backup data that would be used to restore the cluster.
vpc_id: Option<String>
The VPC identifier of the cluster if the snapshot is from a cluster in a VPC. Otherwise, this field is not in the output.
Trait Implementations
impl PartialEq<Snapshot> for Snapshot
[src]
impl Default for Snapshot
[src]
impl Clone for Snapshot
[src]
fn clone(&self) -> Snapshot
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Snapshot
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self