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 ==.impl StructuralPartialEq for NotifyResourceDeploymentStatusChangeInput
Auto Trait Implementations§
impl Freeze for NotifyResourceDeploymentStatusChangeInput
impl RefUnwindSafe for NotifyResourceDeploymentStatusChangeInput
impl Send for NotifyResourceDeploymentStatusChangeInput
impl Sync for NotifyResourceDeploymentStatusChangeInput
impl Unpin for NotifyResourceDeploymentStatusChangeInput
impl UnwindSafe for NotifyResourceDeploymentStatusChangeInput
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> 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