Struct aws_sdk_ssm::model::Runbook
source · [−]#[non_exhaustive]pub struct Runbook { /* private fields */ }
Expand description
Information about an Automation runbook used in a runbook workflow in Change Manager.
The Automation runbooks specified for the runbook workflow can't run until all required approvals for the change request have been received.
Implementations
sourceimpl Runbook
impl Runbook
sourcepub fn document_name(&self) -> Option<&str>
pub fn document_name(&self) -> Option<&str>
The name of the Automation runbook used in a runbook workflow.
sourcepub fn document_version(&self) -> Option<&str>
pub fn document_version(&self) -> Option<&str>
The version of the Automation runbook used in a runbook workflow.
sourcepub fn parameters(&self) -> Option<&HashMap<String, Vec<String>>>
pub fn parameters(&self) -> Option<&HashMap<String, Vec<String>>>
The key-value map of execution parameters, which were supplied when calling StartChangeRequestExecution
.
sourcepub fn target_parameter_name(&self) -> Option<&str>
pub fn target_parameter_name(&self) -> Option<&str>
The name of the parameter used as the target resource for the rate-controlled runbook workflow. Required if you specify Targets
.
sourcepub fn targets(&self) -> Option<&[Target]>
pub fn targets(&self) -> Option<&[Target]>
A key-value mapping to target resources that the runbook operation performs tasks on. Required if you specify TargetParameterName
.
sourcepub fn target_maps(&self) -> Option<&[HashMap<String, Vec<String>>]>
pub fn target_maps(&self) -> Option<&[HashMap<String, Vec<String>>]>
A key-value mapping of runbook parameters to target resources. Both Targets and TargetMaps can't be specified together.
sourcepub fn max_concurrency(&self) -> Option<&str>
pub fn max_concurrency(&self) -> Option<&str>
The MaxConcurrency
value specified by the user when the operation started, indicating the maximum number of resources that the runbook operation can run on at the same time.
sourcepub fn max_errors(&self) -> Option<&str>
pub fn max_errors(&self) -> Option<&str>
The MaxErrors
value specified by the user when the execution started, indicating the maximum number of errors that can occur during the operation before the updates are stopped or rolled back.
sourcepub fn target_locations(&self) -> Option<&[TargetLocation]>
pub fn target_locations(&self) -> Option<&[TargetLocation]>
Information about the Amazon Web Services Regions and Amazon Web Services accounts targeted by the current Runbook operation.
Trait Implementations
impl StructuralPartialEq for Runbook
Auto Trait Implementations
impl RefUnwindSafe for Runbook
impl Send for Runbook
impl Sync for Runbook
impl Unpin for Runbook
impl UnwindSafe for Runbook
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more