#[non_exhaustive]
pub struct ClusterOperationInfo { pub client_request_id: Option<String>, pub cluster_arn: Option<String>, pub creation_time: Option<DateTime>, pub end_time: Option<DateTime>, pub error_info: Option<ErrorInfo>, pub operation_arn: Option<String>, pub operation_state: Option<String>, pub operation_steps: Option<Vec<ClusterOperationStep>>, pub operation_type: Option<String>, pub source_cluster_info: Option<MutableClusterInfo>, pub target_cluster_info: Option<MutableClusterInfo>, }
Expand description

Returns information about a cluster operation.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
client_request_id: Option<String>

The ID of the API request that triggered this operation.

cluster_arn: Option<String>

ARN of the cluster.

creation_time: Option<DateTime>

The time that the operation was created.

end_time: Option<DateTime>

The time at which the operation finished.

error_info: Option<ErrorInfo>

Describes the error if the operation fails.

operation_arn: Option<String>

ARN of the cluster operation.

operation_state: Option<String>

State of the cluster operation.

operation_steps: Option<Vec<ClusterOperationStep>>

Steps completed during the operation.

operation_type: Option<String>

Type of the cluster operation.

source_cluster_info: Option<MutableClusterInfo>

Information about cluster attributes before a cluster is updated.

target_cluster_info: Option<MutableClusterInfo>

Information about cluster attributes after a cluster is updated.

Implementations

The ID of the API request that triggered this operation.

ARN of the cluster.

The time that the operation was created.

The time at which the operation finished.

Describes the error if the operation fails.

ARN of the cluster operation.

State of the cluster operation.

Steps completed during the operation.

Type of the cluster operation.

Information about cluster attributes before a cluster is updated.

Information about cluster attributes after a cluster is updated.

Creates a new builder-style object to manufacture ClusterOperationInfo

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more