#[non_exhaustive]pub struct PutWorkflowRunPropertiesInput {
pub name: Option<String>,
pub run_id: Option<String>,
pub run_properties: Option<HashMap<String, String>>,
}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>Name of the workflow which was run.
run_id: Option<String>The ID of the workflow run for which the run properties should be updated.
run_properties: Option<HashMap<String, String>>The properties to put for the specified run.
Run properties may be logged. Do not pass plaintext secrets as properties. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to use them within the workflow run.
Implementations§
Source§impl PutWorkflowRunPropertiesInput
impl PutWorkflowRunPropertiesInput
Sourcepub fn run_id(&self) -> Option<&str>
pub fn run_id(&self) -> Option<&str>
The ID of the workflow run for which the run properties should be updated.
Sourcepub fn run_properties(&self) -> Option<&HashMap<String, String>>
pub fn run_properties(&self) -> Option<&HashMap<String, String>>
The properties to put for the specified run.
Run properties may be logged. Do not pass plaintext secrets as properties. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to use them within the workflow run.
Source§impl PutWorkflowRunPropertiesInput
impl PutWorkflowRunPropertiesInput
Sourcepub fn builder() -> PutWorkflowRunPropertiesInputBuilder
pub fn builder() -> PutWorkflowRunPropertiesInputBuilder
Creates a new builder-style object to manufacture PutWorkflowRunPropertiesInput.
Trait Implementations§
Source§impl Clone for PutWorkflowRunPropertiesInput
impl Clone for PutWorkflowRunPropertiesInput
Source§fn clone(&self) -> PutWorkflowRunPropertiesInput
fn clone(&self) -> PutWorkflowRunPropertiesInput
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for PutWorkflowRunPropertiesInput
impl PartialEq for PutWorkflowRunPropertiesInput
Source§fn eq(&self, other: &PutWorkflowRunPropertiesInput) -> bool
fn eq(&self, other: &PutWorkflowRunPropertiesInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PutWorkflowRunPropertiesInput
Auto Trait Implementations§
impl Freeze for PutWorkflowRunPropertiesInput
impl RefUnwindSafe for PutWorkflowRunPropertiesInput
impl Send for PutWorkflowRunPropertiesInput
impl Sync for PutWorkflowRunPropertiesInput
impl Unpin for PutWorkflowRunPropertiesInput
impl UnsafeUnpin for PutWorkflowRunPropertiesInput
impl UnwindSafe for PutWorkflowRunPropertiesInput
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§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