#[non_exhaustive]pub struct ConfigurableEnvironmentAction {
pub type: Option<String>,
pub auth: Option<ConfigurableActionTypeAuthorization>,
pub parameters: Option<Vec<ConfigurableActionParameter>>,
}
Expand description
The configurable action of a Amazon DataZone environment.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.type: Option<String>
The type of a configurable action in a Amazon DataZone environment.
auth: Option<ConfigurableActionTypeAuthorization>
The authentication type of a configurable action of a Amazon DataZone environment.
parameters: Option<Vec<ConfigurableActionParameter>>
The parameters of a configurable action in a Amazon DataZone environment.
Implementations§
source§impl ConfigurableEnvironmentAction
impl ConfigurableEnvironmentAction
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
The type of a configurable action in a Amazon DataZone environment.
sourcepub fn auth(&self) -> Option<&ConfigurableActionTypeAuthorization>
pub fn auth(&self) -> Option<&ConfigurableActionTypeAuthorization>
The authentication type of a configurable action of a Amazon DataZone environment.
sourcepub fn parameters(&self) -> Option<&[ConfigurableActionParameter]>
pub fn parameters(&self) -> Option<&[ConfigurableActionParameter]>
The parameters of a configurable action in a Amazon DataZone environment.
source§impl ConfigurableEnvironmentAction
impl ConfigurableEnvironmentAction
sourcepub fn builder() -> ConfigurableEnvironmentActionBuilder
pub fn builder() -> ConfigurableEnvironmentActionBuilder
Creates a new builder-style object to manufacture ConfigurableEnvironmentAction
.
Trait Implementations§
source§impl Clone for ConfigurableEnvironmentAction
impl Clone for ConfigurableEnvironmentAction
source§fn clone(&self) -> ConfigurableEnvironmentAction
fn clone(&self) -> ConfigurableEnvironmentAction
Returns a copy 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 PartialEq for ConfigurableEnvironmentAction
impl PartialEq for ConfigurableEnvironmentAction
source§fn eq(&self, other: &ConfigurableEnvironmentAction) -> bool
fn eq(&self, other: &ConfigurableEnvironmentAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConfigurableEnvironmentAction
Auto Trait Implementations§
impl RefUnwindSafe for ConfigurableEnvironmentAction
impl Send for ConfigurableEnvironmentAction
impl Sync for ConfigurableEnvironmentAction
impl Unpin for ConfigurableEnvironmentAction
impl UnwindSafe for ConfigurableEnvironmentAction
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