Struct aws_sdk_resiliencehub::operation::describe_app_version_resource::DescribeAppVersionResourceInput
source · #[non_exhaustive]pub struct DescribeAppVersionResourceInput {
pub app_arn: Option<String>,
pub app_version: Option<String>,
pub resource_name: Option<String>,
pub logical_resource_id: Option<LogicalResourceId>,
pub physical_resource_id: Option<String>,
pub aws_region: Option<String>,
pub aws_account_id: 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.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.
app_version: Option<String>Resilience Hub application version.
resource_name: Option<String>Name of the resource.
logical_resource_id: Option<LogicalResourceId>Logical identifier of the resource.
physical_resource_id: Option<String>Physical identifier of the resource.
aws_region: Option<String>Amazon Web Services region that owns the physical resource.
aws_account_id: Option<String>Amazon Web Services account that owns the physical resource.
Implementations§
source§impl DescribeAppVersionResourceInput
impl DescribeAppVersionResourceInput
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 app_version(&self) -> Option<&str>
pub fn app_version(&self) -> Option<&str>
Resilience Hub application version.
sourcepub fn resource_name(&self) -> Option<&str>
pub fn resource_name(&self) -> Option<&str>
Name of the resource.
sourcepub fn logical_resource_id(&self) -> Option<&LogicalResourceId>
pub fn logical_resource_id(&self) -> Option<&LogicalResourceId>
Logical identifier of the resource.
sourcepub fn physical_resource_id(&self) -> Option<&str>
pub fn physical_resource_id(&self) -> Option<&str>
Physical identifier of the resource.
sourcepub fn aws_region(&self) -> Option<&str>
pub fn aws_region(&self) -> Option<&str>
Amazon Web Services region that owns the physical resource.
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
Amazon Web Services account that owns the physical resource.
source§impl DescribeAppVersionResourceInput
impl DescribeAppVersionResourceInput
sourcepub fn builder() -> DescribeAppVersionResourceInputBuilder
pub fn builder() -> DescribeAppVersionResourceInputBuilder
Creates a new builder-style object to manufacture DescribeAppVersionResourceInput.
Trait Implementations§
source§impl Clone for DescribeAppVersionResourceInput
impl Clone for DescribeAppVersionResourceInput
source§fn clone(&self) -> DescribeAppVersionResourceInput
fn clone(&self) -> DescribeAppVersionResourceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeAppVersionResourceInput
impl PartialEq for DescribeAppVersionResourceInput
source§fn eq(&self, other: &DescribeAppVersionResourceInput) -> bool
fn eq(&self, other: &DescribeAppVersionResourceInput) -> bool
self and other values to be equal, and is used
by ==.