Struct aws_sdk_cloudformation::input::SignalResourceInput
source · [−]#[non_exhaustive]pub struct SignalResourceInput { /* private fields */ }Expand description
The input for the SignalResource action.
Implementations
sourceimpl SignalResourceInput
impl SignalResourceInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SignalResource, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SignalResource, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SignalResource>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SignalResourceInput.
sourceimpl SignalResourceInput
impl SignalResourceInput
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
The stack name or unique stack ID that includes the resource that you want to signal.
sourcepub fn logical_resource_id(&self) -> Option<&str>
pub fn logical_resource_id(&self) -> Option<&str>
The logical ID of the resource that you want to signal. The logical ID is the name of the resource that given in the template.
sourcepub fn unique_id(&self) -> Option<&str>
pub fn unique_id(&self) -> Option<&str>
A unique ID of the signal. When you signal Amazon EC2 instances or Auto Scaling groups, specify the instance ID that you are signaling as the unique ID. If you send multiple signals to a single resource (such as signaling a wait condition), each signal requires a different unique ID.
sourcepub fn status(&self) -> Option<&ResourceSignalStatus>
pub fn status(&self) -> Option<&ResourceSignalStatus>
The status of the signal, which is either success or failure. A failure signal causes CloudFormation to immediately fail the stack creation or update.
Trait Implementations
sourceimpl Clone for SignalResourceInput
impl Clone for SignalResourceInput
sourcefn clone(&self) -> SignalResourceInput
fn clone(&self) -> SignalResourceInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more