Struct aws_sdk_kafka::input::ListNodesInput
source · [−]#[non_exhaustive]pub struct ListNodesInput {
pub cluster_arn: Option<String>,
pub max_results: i32,
pub next_token: Option<String>,
}
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.cluster_arn: Option<String>
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
max_results: i32
The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
next_token: Option<String>
The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListNodes, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListNodes, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListNodes
>
Creates a new builder-style object to manufacture ListNodesInput
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.
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 ListNodesInput
impl Send for ListNodesInput
impl Sync for ListNodesInput
impl Unpin for ListNodesInput
impl UnwindSafe for ListNodesInput
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