pub struct DescribeParametersRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub parameter_group_name: String,
pub source: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of results to include in the response. If more results exist than the specified MaxResults
value, a token is included in the response so that the remaining results can be retrieved.
The value for MaxResults
must be between 20 and 100.
next_token: Option<String>
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults
.
parameter_group_name: String
The name of the parameter group.
source: Option<String>
How the parameter is defined. For example, system
denotes a system-defined parameter.
Trait Implementations§
Source§impl Clone for DescribeParametersRequest
impl Clone for DescribeParametersRequest
Source§fn clone(&self) -> DescribeParametersRequest
fn clone(&self) -> DescribeParametersRequest
Returns a copy 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 DescribeParametersRequest
impl Debug for DescribeParametersRequest
Source§impl Default for DescribeParametersRequest
impl Default for DescribeParametersRequest
Source§fn default() -> DescribeParametersRequest
fn default() -> DescribeParametersRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeParametersRequest
Auto Trait Implementations§
impl Freeze for DescribeParametersRequest
impl RefUnwindSafe for DescribeParametersRequest
impl Send for DescribeParametersRequest
impl Sync for DescribeParametersRequest
impl Unpin for DescribeParametersRequest
impl UnwindSafe for DescribeParametersRequest
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