Struct aws_sdk_ecs::input::ListAttributesInput
source · #[non_exhaustive]pub struct ListAttributesInput { /* private fields */ }Implementations§
source§impl ListAttributesInput
impl ListAttributesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAttributes, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAttributes, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListAttributes>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListAttributesInput.
source§impl ListAttributesInput
impl ListAttributesInput
sourcepub fn cluster(&self) -> Option<&str>
pub fn cluster(&self) -> Option<&str>
The short name or full Amazon Resource Name (ARN) of the cluster to list attributes. If you do not specify a cluster, the default cluster is assumed.
sourcepub fn target_type(&self) -> Option<&TargetType>
pub fn target_type(&self) -> Option<&TargetType>
The type of the target to list attributes with.
sourcepub fn attribute_name(&self) -> Option<&str>
pub fn attribute_name(&self) -> Option<&str>
The name of the attribute to filter the results with.
sourcepub fn attribute_value(&self) -> Option<&str>
pub fn attribute_value(&self) -> Option<&str>
The value of the attribute to filter results with. You must also specify an attribute name to use this parameter.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken value returned from a ListAttributes request indicating that more results are available to fulfill the request and further calls are needed. If maxResults was provided, it's possible the number of results to be fewer than maxResults.
This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of cluster results that ListAttributes returned in paginated output. When this parameter is used, ListAttributes only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListAttributes request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn't used, then ListAttributes returns up to 100 results and a nextToken value if applicable.
Trait Implementations§
source§impl Clone for ListAttributesInput
impl Clone for ListAttributesInput
source§fn clone(&self) -> ListAttributesInput
fn clone(&self) -> ListAttributesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListAttributesInput
impl Debug for ListAttributesInput
source§impl PartialEq<ListAttributesInput> for ListAttributesInput
impl PartialEq<ListAttributesInput> for ListAttributesInput
source§fn eq(&self, other: &ListAttributesInput) -> bool
fn eq(&self, other: &ListAttributesInput) -> bool
self and other values to be equal, and is used
by ==.