pub struct GetAttributeValuesRequest {
pub attribute_name: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub service_code: String,
}Fields§
§attribute_name: StringThe name of the attribute that you want to retrieve the values for, such as volumeType.
max_results: Option<i64>The maximum number of results to return in response.
next_token: Option<String>The pagination token that indicates the next set of results that you want to retrieve.
service_code: StringThe service code for the service whose attributes you want to retrieve. For example, if you want the retrieve an EC2 attribute, use AmazonEC2.
Trait Implementations§
Source§impl Clone for GetAttributeValuesRequest
impl Clone for GetAttributeValuesRequest
Source§fn clone(&self) -> GetAttributeValuesRequest
fn clone(&self) -> GetAttributeValuesRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetAttributeValuesRequest
impl Debug for GetAttributeValuesRequest
Source§impl Default for GetAttributeValuesRequest
impl Default for GetAttributeValuesRequest
Source§fn default() -> GetAttributeValuesRequest
fn default() -> GetAttributeValuesRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetAttributeValuesRequest
Auto Trait Implementations§
impl Freeze for GetAttributeValuesRequest
impl RefUnwindSafe for GetAttributeValuesRequest
impl Send for GetAttributeValuesRequest
impl Sync for GetAttributeValuesRequest
impl Unpin for GetAttributeValuesRequest
impl UnwindSafe for GetAttributeValuesRequest
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
Mutably borrows from an owned value. Read more