Struct aws_sdk_redshift::types::Parameter
source · #[non_exhaustive]pub struct Parameter {
pub parameter_name: Option<String>,
pub parameter_value: Option<String>,
pub description: Option<String>,
pub source: Option<String>,
pub data_type: Option<String>,
pub allowed_values: Option<String>,
pub apply_type: Option<ParameterApplyType>,
pub is_modifiable: Option<bool>,
pub minimum_engine_version: Option<String>,
}
Expand description
Describes a parameter in a cluster parameter group.
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.parameter_name: Option<String>
The name of the parameter.
parameter_value: Option<String>
The value of the parameter. If ParameterName
is wlm_json_configuration
, then the maximum size of ParameterValue
is 8000 characters.
description: Option<String>
A description of the parameter.
source: Option<String>
The source of the parameter value, such as "engine-default" or "user".
data_type: Option<String>
The data type of the parameter.
allowed_values: Option<String>
The valid range of values for the parameter.
apply_type: Option<ParameterApplyType>
Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
is_modifiable: Option<bool>
If true
, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.
minimum_engine_version: Option<String>
The earliest engine version to which the parameter can apply.
Implementations§
source§impl Parameter
impl Parameter
sourcepub fn parameter_name(&self) -> Option<&str>
pub fn parameter_name(&self) -> Option<&str>
The name of the parameter.
sourcepub fn parameter_value(&self) -> Option<&str>
pub fn parameter_value(&self) -> Option<&str>
The value of the parameter. If ParameterName
is wlm_json_configuration
, then the maximum size of ParameterValue
is 8000 characters.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the parameter.
sourcepub fn source(&self) -> Option<&str>
pub fn source(&self) -> Option<&str>
The source of the parameter value, such as "engine-default" or "user".
sourcepub fn allowed_values(&self) -> Option<&str>
pub fn allowed_values(&self) -> Option<&str>
The valid range of values for the parameter.
sourcepub fn apply_type(&self) -> Option<&ParameterApplyType>
pub fn apply_type(&self) -> Option<&ParameterApplyType>
Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
sourcepub fn is_modifiable(&self) -> Option<bool>
pub fn is_modifiable(&self) -> Option<bool>
If true
, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.
sourcepub fn minimum_engine_version(&self) -> Option<&str>
pub fn minimum_engine_version(&self) -> Option<&str>
The earliest engine version to which the parameter can apply.
Trait Implementations§
impl StructuralPartialEq for Parameter
Auto Trait Implementations§
impl Freeze for Parameter
impl RefUnwindSafe for Parameter
impl Send for Parameter
impl Sync for Parameter
impl Unpin for Parameter
impl UnwindSafe for Parameter
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more