Struct aws_sdk_eks::input::DescribeAddonVersionsInput
source · [−]#[non_exhaustive]pub struct DescribeAddonVersionsInput {
pub kubernetes_version: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub addon_name: 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.kubernetes_version: Option<String>
The Kubernetes versions that the add-on can be used with.
max_results: Option<i32>
The maximum number of results to return.
next_token: Option<String>
The nextToken
value returned from a previous paginated DescribeAddonVersionsRequest
where maxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken
value.
This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
addon_name: Option<String>
The name of the add-on. The name must match one of the names returned by ListAddons
.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeAddonVersions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeAddonVersions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeAddonVersions
>
Creates a new builder-style object to manufacture DescribeAddonVersionsInput
The Kubernetes versions that the add-on can be used with.
The maximum number of results to return.
The nextToken
value returned from a previous paginated DescribeAddonVersionsRequest
where maxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken
value.
This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
The name of the add-on. The name must match one of the names returned by ListAddons
.
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 DescribeAddonVersionsInput
impl Send for DescribeAddonVersionsInput
impl Sync for DescribeAddonVersionsInput
impl Unpin for DescribeAddonVersionsInput
impl UnwindSafe for DescribeAddonVersionsInput
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