Struct aws_sdk_redshift::operation::describe_cluster_parameters::DescribeClusterParametersOutput
source · #[non_exhaustive]pub struct DescribeClusterParametersOutput {
pub parameters: Option<Vec<Parameter>>,
pub marker: Option<String>,
/* private fields */
}
Expand description
Contains the output from the DescribeClusterParameters
action.
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.parameters: Option<Vec<Parameter>>
A list of Parameter
instances. Each instance lists the parameters of one cluster parameter group.
marker: Option<String>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
Implementations§
source§impl DescribeClusterParametersOutput
impl DescribeClusterParametersOutput
sourcepub fn parameters(&self) -> &[Parameter]
pub fn parameters(&self) -> &[Parameter]
A list of Parameter
instances. Each instance lists the parameters of one cluster parameter group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameters.is_none()
.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
source§impl DescribeClusterParametersOutput
impl DescribeClusterParametersOutput
sourcepub fn builder() -> DescribeClusterParametersOutputBuilder
pub fn builder() -> DescribeClusterParametersOutputBuilder
Creates a new builder-style object to manufacture DescribeClusterParametersOutput
.
Trait Implementations§
source§impl Clone for DescribeClusterParametersOutput
impl Clone for DescribeClusterParametersOutput
source§fn clone(&self) -> DescribeClusterParametersOutput
fn clone(&self) -> DescribeClusterParametersOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeClusterParametersOutput
impl PartialEq for DescribeClusterParametersOutput
source§fn eq(&self, other: &DescribeClusterParametersOutput) -> bool
fn eq(&self, other: &DescribeClusterParametersOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeClusterParametersOutput
impl RequestId for DescribeClusterParametersOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.