#[non_exhaustive]pub struct GroupConfigurationParameter {
pub name: Option<String>,
pub values: Option<Vec<String>>,
}Expand description
A parameter for a group configuration item. For details about group service configuration syntax, see Service configurations for resource groups.
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.name: Option<String>The name of the group configuration parameter. For the list of parameters that you can use with each configuration item type, see Supported resource types and parameters.
values: Option<Vec<String>>The value or values to be used for the specified parameter. For the list of values you can use with each parameter, see Supported resource types and parameters.
Implementations§
source§impl GroupConfigurationParameter
impl GroupConfigurationParameter
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the group configuration parameter. For the list of parameters that you can use with each configuration item type, see Supported resource types and parameters.
sourcepub fn values(&self) -> Option<&[String]>
pub fn values(&self) -> Option<&[String]>
The value or values to be used for the specified parameter. For the list of values you can use with each parameter, see Supported resource types and parameters.
source§impl GroupConfigurationParameter
impl GroupConfigurationParameter
sourcepub fn builder() -> GroupConfigurationParameterBuilder
pub fn builder() -> GroupConfigurationParameterBuilder
Creates a new builder-style object to manufacture GroupConfigurationParameter.
Trait Implementations§
source§impl Clone for GroupConfigurationParameter
impl Clone for GroupConfigurationParameter
source§fn clone(&self) -> GroupConfigurationParameter
fn clone(&self) -> GroupConfigurationParameter
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GroupConfigurationParameter
impl Debug for GroupConfigurationParameter
source§impl PartialEq for GroupConfigurationParameter
impl PartialEq for GroupConfigurationParameter
source§fn eq(&self, other: &GroupConfigurationParameter) -> bool
fn eq(&self, other: &GroupConfigurationParameter) -> bool
self and other values to be equal, and is used
by ==.