#[non_exhaustive]pub struct DeleteAppInputSourceInput {
pub app_arn: Option<String>,
pub source_arn: Option<String>,
pub terraform_source: Option<TerraformSource>,
pub client_token: Option<String>,
pub eks_source_cluster_namespace: Option<EksSourceClusterNamespace>,
}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.app_arn: Option<String>Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
source_arn: Option<String>The Amazon Resource Name (ARN) of the imported resource you want to remove from the Resilience Hub application. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
terraform_source: Option<TerraformSource>The imported Terraform s3 state file you want to remove from the Resilience Hub application.
client_token: Option<String>Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.
eks_source_cluster_namespace: Option<EksSourceClusterNamespace>The namespace on your Amazon Elastic Kubernetes Service cluster that you want to delete from the Resilience Hub application.
Implementations§
source§impl DeleteAppInputSourceInput
impl DeleteAppInputSourceInput
sourcepub fn app_arn(&self) -> Option<&str>
pub fn app_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
sourcepub fn source_arn(&self) -> Option<&str>
pub fn source_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the imported resource you want to remove from the Resilience Hub application. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
sourcepub fn terraform_source(&self) -> Option<&TerraformSource>
pub fn terraform_source(&self) -> Option<&TerraformSource>
The imported Terraform s3 state file you want to remove from the Resilience Hub application.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.
sourcepub fn eks_source_cluster_namespace(&self) -> Option<&EksSourceClusterNamespace>
pub fn eks_source_cluster_namespace(&self) -> Option<&EksSourceClusterNamespace>
The namespace on your Amazon Elastic Kubernetes Service cluster that you want to delete from the Resilience Hub application.
source§impl DeleteAppInputSourceInput
impl DeleteAppInputSourceInput
sourcepub fn builder() -> DeleteAppInputSourceInputBuilder
pub fn builder() -> DeleteAppInputSourceInputBuilder
Creates a new builder-style object to manufacture DeleteAppInputSourceInput.
Trait Implementations§
source§impl Clone for DeleteAppInputSourceInput
impl Clone for DeleteAppInputSourceInput
source§fn clone(&self) -> DeleteAppInputSourceInput
fn clone(&self) -> DeleteAppInputSourceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteAppInputSourceInput
impl Debug for DeleteAppInputSourceInput
source§impl PartialEq for DeleteAppInputSourceInput
impl PartialEq for DeleteAppInputSourceInput
source§fn eq(&self, other: &DeleteAppInputSourceInput) -> bool
fn eq(&self, other: &DeleteAppInputSourceInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteAppInputSourceInput
Auto Trait Implementations§
impl Freeze for DeleteAppInputSourceInput
impl RefUnwindSafe for DeleteAppInputSourceInput
impl Send for DeleteAppInputSourceInput
impl Sync for DeleteAppInputSourceInput
impl Unpin for DeleteAppInputSourceInput
impl UnwindSafe for DeleteAppInputSourceInput
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