#[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>,
pub types: Option<Vec<String>>,
pub publishers: Option<Vec<String>>,
pub owners: Option<Vec<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 you can use the add-on with.
max_results: Option<i32>The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
next_token: Option<String>The nextToken value returned from a previous paginated request, 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 value is null when there are no more results to return.
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 .
types: Option<Vec<String>>The type of the add-on. For valid types, don't specify a value for this property.
publishers: Option<Vec<String>>The publisher of the add-on. For valid publishers, don't specify a value for this property.
owners: Option<Vec<String>>The owner of the add-on. For valid owners, don't specify a value for this property.
Implementations§
source§impl DescribeAddonVersionsInput
impl DescribeAddonVersionsInput
sourcepub fn kubernetes_version(&self) -> Option<&str>
pub fn kubernetes_version(&self) -> Option<&str>
The Kubernetes versions that you can use the add-on with.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken value returned from a previous paginated request, 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 value is null when there are no more results to return.
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.
sourcepub fn addon_name(&self) -> Option<&str>
pub fn addon_name(&self) -> Option<&str>
The name of the add-on. The name must match one of the names returned by ListAddons .
sourcepub fn types(&self) -> &[String]
pub fn types(&self) -> &[String]
The type of the add-on. For valid types, don't specify a value for this property.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .types.is_none().
sourcepub fn publishers(&self) -> &[String]
pub fn publishers(&self) -> &[String]
The publisher of the add-on. For valid publishers, don't specify a value for this property.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .publishers.is_none().
source§impl DescribeAddonVersionsInput
impl DescribeAddonVersionsInput
sourcepub fn builder() -> DescribeAddonVersionsInputBuilder
pub fn builder() -> DescribeAddonVersionsInputBuilder
Creates a new builder-style object to manufacture DescribeAddonVersionsInput.
Trait Implementations§
source§impl Clone for DescribeAddonVersionsInput
impl Clone for DescribeAddonVersionsInput
source§fn clone(&self) -> DescribeAddonVersionsInput
fn clone(&self) -> DescribeAddonVersionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeAddonVersionsInput
impl Debug for DescribeAddonVersionsInput
source§impl PartialEq for DescribeAddonVersionsInput
impl PartialEq for DescribeAddonVersionsInput
source§fn eq(&self, other: &DescribeAddonVersionsInput) -> bool
fn eq(&self, other: &DescribeAddonVersionsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeAddonVersionsInput
Auto Trait Implementations§
impl Freeze for DescribeAddonVersionsInput
impl RefUnwindSafe for DescribeAddonVersionsInput
impl Send for DescribeAddonVersionsInput
impl Sync for DescribeAddonVersionsInput
impl Unpin for DescribeAddonVersionsInput
impl UnwindSafe for DescribeAddonVersionsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more