pub struct ActionTypeProperty {
pub description: Option<String>,
pub key: bool,
pub name: String,
pub no_echo: bool,
pub optional: bool,
pub queryable: Option<bool>,
}
Expand description
Represents information about each property specified in the action configuration, such as the description and key name that display for the customer using the action type.
Fields§
§description: Option<String>
The description of the property that is displayed to users.
key: bool
Whether the configuration property is a key.
name: String
The property name that is displayed to users.
no_echo: bool
Whether to omit the field value entered by the customer in the log. If true
, the value is not saved in CloudTrail logs for the action execution.
optional: bool
Whether the configuration property is an optional value.
queryable: Option<bool>
Indicates that the property is used with polling. An action type can have up to one queryable property. If it has one, that property must be both required and not secret.
Trait Implementations§
Source§impl Clone for ActionTypeProperty
impl Clone for ActionTypeProperty
Source§fn clone(&self) -> ActionTypeProperty
fn clone(&self) -> ActionTypeProperty
Returns a duplicate 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 ActionTypeProperty
impl Debug for ActionTypeProperty
Source§impl Default for ActionTypeProperty
impl Default for ActionTypeProperty
Source§fn default() -> ActionTypeProperty
fn default() -> ActionTypeProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionTypeProperty
impl<'de> Deserialize<'de> for ActionTypeProperty
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ActionTypeProperty
impl PartialEq for ActionTypeProperty
Source§impl Serialize for ActionTypeProperty
impl Serialize for ActionTypeProperty
impl StructuralPartialEq for ActionTypeProperty
Auto Trait Implementations§
impl Freeze for ActionTypeProperty
impl RefUnwindSafe for ActionTypeProperty
impl Send for ActionTypeProperty
impl Sync for ActionTypeProperty
impl Unpin for ActionTypeProperty
impl UnwindSafe for ActionTypeProperty
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