Struct aws_sdk_cloud9::input::ListEnvironmentsInput [−][src]
#[non_exhaustive]pub struct ListEnvironmentsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.next_token: Option<String>
During a previous call, if there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
max_results: Option<i32>
The maximum number of environments to get identifiers for.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEnvironments, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEnvironments, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListEnvironments
>
Creates a new builder-style object to manufacture ListEnvironmentsInput
During a previous call, if there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
The maximum number of environments to get identifiers for.
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 ListEnvironmentsInput
impl Send for ListEnvironmentsInput
impl Sync for ListEnvironmentsInput
impl Unpin for ListEnvironmentsInput
impl UnwindSafe for ListEnvironmentsInput
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