[][src]Struct rusoto_cloudformation::ListTypeRegistrationsInput

pub struct ListTypeRegistrationsInput {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub registration_status_filter: Option<String>,
    pub type_: Option<String>,
    pub type_arn: Option<String>,
    pub type_name: Option<String>,
}

Fields

max_results: Option<i64>

The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.

next_token: Option<String>

If the previous paginated request didn't return all of the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.

registration_status_filter: Option<String>

The current status of the type registration request.

The default is IN_PROGRESS.

type_: Option<String>

The kind of type.

Currently the only valid value is RESOURCE.

Conditional: You must specify either TypeName and Type, or Arn.

type_arn: Option<String>

The Amazon Resource Name (ARN) of the type.

Conditional: You must specify either TypeName and Type, or Arn.

type_name: Option<String>

The name of the type.

Conditional: You must specify either TypeName and Type, or Arn.

Trait Implementations

impl Clone for ListTypeRegistrationsInput[src]

impl Debug for ListTypeRegistrationsInput[src]

impl Default for ListTypeRegistrationsInput[src]

impl PartialEq<ListTypeRegistrationsInput> for ListTypeRegistrationsInput[src]

impl StructuralPartialEq for ListTypeRegistrationsInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.