Struct aws_sdk_proton::operation::notify_resource_deployment_status_change::NotifyResourceDeploymentStatusChangeInput
source · #[non_exhaustive]pub struct NotifyResourceDeploymentStatusChangeInput {
pub resource_arn: Option<String>,
pub status: Option<ResourceDeploymentStatus>,
pub outputs: Option<Vec<Output>>,
pub deployment_id: Option<String>,
pub status_message: Option<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.resource_arn: Option<String>The provisioned resource Amazon Resource Name (ARN).
status: Option<ResourceDeploymentStatus>The status of your provisioned resource.
outputs: Option<Vec<Output>>The provisioned resource state change detail data that's returned by Proton.
deployment_id: Option<String>The deployment ID for your provisioned resource.
status_message: Option<String>The deployment status message for your provisioned resource.
Implementations§
source§impl NotifyResourceDeploymentStatusChangeInput
impl NotifyResourceDeploymentStatusChangeInput
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The provisioned resource Amazon Resource Name (ARN).
sourcepub fn status(&self) -> Option<&ResourceDeploymentStatus>
pub fn status(&self) -> Option<&ResourceDeploymentStatus>
The status of your provisioned resource.
sourcepub fn outputs(&self) -> &[Output]
pub fn outputs(&self) -> &[Output]
The provisioned resource state change detail data that's returned by Proton.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .outputs.is_none().
sourcepub fn deployment_id(&self) -> Option<&str>
pub fn deployment_id(&self) -> Option<&str>
The deployment ID for your provisioned resource.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The deployment status message for your provisioned resource.
source§impl NotifyResourceDeploymentStatusChangeInput
impl NotifyResourceDeploymentStatusChangeInput
sourcepub fn builder() -> NotifyResourceDeploymentStatusChangeInputBuilder
pub fn builder() -> NotifyResourceDeploymentStatusChangeInputBuilder
Creates a new builder-style object to manufacture NotifyResourceDeploymentStatusChangeInput.
Trait Implementations§
source§impl Clone for NotifyResourceDeploymentStatusChangeInput
impl Clone for NotifyResourceDeploymentStatusChangeInput
source§fn clone(&self) -> NotifyResourceDeploymentStatusChangeInput
fn clone(&self) -> NotifyResourceDeploymentStatusChangeInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for NotifyResourceDeploymentStatusChangeInput
impl PartialEq for NotifyResourceDeploymentStatusChangeInput
source§fn eq(&self, other: &NotifyResourceDeploymentStatusChangeInput) -> bool
fn eq(&self, other: &NotifyResourceDeploymentStatusChangeInput) -> bool
self and other values to be equal, and is used
by ==.