#[non_exhaustive]pub struct RuleConfigurationProperty {
pub name: String,
pub required: bool,
pub key: bool,
pub secret: bool,
pub queryable: bool,
pub description: Option<String>,
pub type: Option<RuleConfigurationPropertyType>,
}
Expand description
Represents information about a rule configuration property.
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: String
The name of the rule configuration property.
required: bool
Whether the configuration property is a required value.
key: bool
Whether the configuration property is a key.
secret: bool
Whether the configuration property is secret.
When updating a pipeline, passing * * * * * without changing any other values of the action preserves the previous value of the secret.
queryable: bool
Indicates whether the property can be queried.
If you create a pipeline with a condition and rule, and that rule contains a queryable property, the value for that configuration property is subject to other restrictions. The value must be less than or equal to twenty (20) characters. The value can contain only alphanumeric characters, underscores, and hyphens.
description: Option<String>
The description of the action configuration property that is displayed to users.
type: Option<RuleConfigurationPropertyType>
The type of the configuration property.
Implementations§
source§impl RuleConfigurationProperty
impl RuleConfigurationProperty
sourcepub fn secret(&self) -> bool
pub fn secret(&self) -> bool
Whether the configuration property is secret.
When updating a pipeline, passing * * * * * without changing any other values of the action preserves the previous value of the secret.
sourcepub fn queryable(&self) -> bool
pub fn queryable(&self) -> bool
Indicates whether the property can be queried.
If you create a pipeline with a condition and rule, and that rule contains a queryable property, the value for that configuration property is subject to other restrictions. The value must be less than or equal to twenty (20) characters. The value can contain only alphanumeric characters, underscores, and hyphens.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the action configuration property that is displayed to users.
sourcepub fn type(&self) -> Option<&RuleConfigurationPropertyType>
pub fn type(&self) -> Option<&RuleConfigurationPropertyType>
The type of the configuration property.
source§impl RuleConfigurationProperty
impl RuleConfigurationProperty
sourcepub fn builder() -> RuleConfigurationPropertyBuilder
pub fn builder() -> RuleConfigurationPropertyBuilder
Creates a new builder-style object to manufacture RuleConfigurationProperty
.
Trait Implementations§
source§impl Clone for RuleConfigurationProperty
impl Clone for RuleConfigurationProperty
source§fn clone(&self) -> RuleConfigurationProperty
fn clone(&self) -> RuleConfigurationProperty
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RuleConfigurationProperty
impl Debug for RuleConfigurationProperty
impl StructuralPartialEq for RuleConfigurationProperty
Auto Trait Implementations§
impl Freeze for RuleConfigurationProperty
impl RefUnwindSafe for RuleConfigurationProperty
impl Send for RuleConfigurationProperty
impl Sync for RuleConfigurationProperty
impl Unpin for RuleConfigurationProperty
impl UnwindSafe for RuleConfigurationProperty
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