Struct aws_sdk_kafka::model::ClusterOperationInfo
source · [−]#[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
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.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ClusterOperationInfo
impl Send for ClusterOperationInfo
impl Sync for ClusterOperationInfo
impl Unpin for ClusterOperationInfo
impl UnwindSafe for ClusterOperationInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
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