Struct aws_sdk_resiliencehub::operation::update_app_version_resource::builders::UpdateAppVersionResourceInputBuilder
source · #[non_exhaustive]pub struct UpdateAppVersionResourceInputBuilder { /* private fields */ }Expand description
A builder for UpdateAppVersionResourceInput.
Implementations§
source§impl UpdateAppVersionResourceInputBuilder
impl UpdateAppVersionResourceInputBuilder
sourcepub fn app_arn(self, input: impl Into<String>) -> Self
pub fn app_arn(self, input: impl Into<String>) -> Self
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 set_app_arn(self, input: Option<String>) -> Self
pub fn set_app_arn(self, input: Option<String>) -> Self
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 get_app_arn(&self) -> &Option<String>
pub fn get_app_arn(&self) -> &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.
sourcepub fn resource_name(self, input: impl Into<String>) -> Self
pub fn resource_name(self, input: impl Into<String>) -> Self
Name of the resource.
sourcepub fn set_resource_name(self, input: Option<String>) -> Self
pub fn set_resource_name(self, input: Option<String>) -> Self
Name of the resource.
sourcepub fn get_resource_name(&self) -> &Option<String>
pub fn get_resource_name(&self) -> &Option<String>
Name of the resource.
sourcepub fn logical_resource_id(self, input: LogicalResourceId) -> Self
pub fn logical_resource_id(self, input: LogicalResourceId) -> Self
Logical identifier of the resource.
sourcepub fn set_logical_resource_id(self, input: Option<LogicalResourceId>) -> Self
pub fn set_logical_resource_id(self, input: Option<LogicalResourceId>) -> Self
Logical identifier of the resource.
sourcepub fn get_logical_resource_id(&self) -> &Option<LogicalResourceId>
pub fn get_logical_resource_id(&self) -> &Option<LogicalResourceId>
Logical identifier of the resource.
sourcepub fn physical_resource_id(self, input: impl Into<String>) -> Self
pub fn physical_resource_id(self, input: impl Into<String>) -> Self
Physical identifier of the resource.
sourcepub fn set_physical_resource_id(self, input: Option<String>) -> Self
pub fn set_physical_resource_id(self, input: Option<String>) -> Self
Physical identifier of the resource.
sourcepub fn get_physical_resource_id(&self) -> &Option<String>
pub fn get_physical_resource_id(&self) -> &Option<String>
Physical identifier of the resource.
sourcepub fn aws_region(self, input: impl Into<String>) -> Self
pub fn aws_region(self, input: impl Into<String>) -> Self
Amazon Web Services region that owns the physical resource.
sourcepub fn set_aws_region(self, input: Option<String>) -> Self
pub fn set_aws_region(self, input: Option<String>) -> Self
Amazon Web Services region that owns the physical resource.
sourcepub fn get_aws_region(&self) -> &Option<String>
pub fn get_aws_region(&self) -> &Option<String>
Amazon Web Services region that owns the physical resource.
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
Amazon Web Services account that owns the physical resource.
sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
Amazon Web Services account that owns the physical resource.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
Amazon Web Services account that owns the physical resource.
sourcepub fn resource_type(self, input: impl Into<String>) -> Self
pub fn resource_type(self, input: impl Into<String>) -> Self
Type of resource.
sourcepub fn set_resource_type(self, input: Option<String>) -> Self
pub fn set_resource_type(self, input: Option<String>) -> Self
Type of resource.
sourcepub fn get_resource_type(&self) -> &Option<String>
pub fn get_resource_type(&self) -> &Option<String>
Type of resource.
sourcepub fn app_components(self, input: impl Into<String>) -> Self
pub fn app_components(self, input: impl Into<String>) -> Self
Appends an item to app_components.
To override the contents of this collection use set_app_components.
List of Application Components that this resource belongs to. If an Application Component is not part of the Resilience Hub application, it will be added.
sourcepub fn set_app_components(self, input: Option<Vec<String>>) -> Self
pub fn set_app_components(self, input: Option<Vec<String>>) -> Self
List of Application Components that this resource belongs to. If an Application Component is not part of the Resilience Hub application, it will be added.
sourcepub fn get_app_components(&self) -> &Option<Vec<String>>
pub fn get_app_components(&self) -> &Option<Vec<String>>
List of Application Components that this resource belongs to. If an Application Component is not part of the Resilience Hub application, it will be added.
sourcepub fn additional_info(self, k: impl Into<String>, v: Vec<String>) -> Self
pub fn additional_info(self, k: impl Into<String>, v: Vec<String>) -> Self
Adds a key-value pair to additional_info.
To override the contents of this collection use set_additional_info.
Currently, there is no supported additional information for resources.
sourcepub fn set_additional_info(
self,
input: Option<HashMap<String, Vec<String>>>
) -> Self
pub fn set_additional_info( self, input: Option<HashMap<String, Vec<String>>> ) -> Self
Currently, there is no supported additional information for resources.
sourcepub fn get_additional_info(&self) -> &Option<HashMap<String, Vec<String>>>
pub fn get_additional_info(&self) -> &Option<HashMap<String, Vec<String>>>
Currently, there is no supported additional information for resources.
sourcepub fn excluded(self, input: bool) -> Self
pub fn excluded(self, input: bool) -> Self
Indicates if a resource is excluded from an Resilience Hub application.
You can exclude only imported resources from an Resilience Hub application.
sourcepub fn set_excluded(self, input: Option<bool>) -> Self
pub fn set_excluded(self, input: Option<bool>) -> Self
Indicates if a resource is excluded from an Resilience Hub application.
You can exclude only imported resources from an Resilience Hub application.
sourcepub fn get_excluded(&self) -> &Option<bool>
pub fn get_excluded(&self) -> &Option<bool>
Indicates if a resource is excluded from an Resilience Hub application.
You can exclude only imported resources from an Resilience Hub application.
sourcepub fn build(self) -> Result<UpdateAppVersionResourceInput, BuildError>
pub fn build(self) -> Result<UpdateAppVersionResourceInput, BuildError>
Consumes the builder and constructs a UpdateAppVersionResourceInput.
source§impl UpdateAppVersionResourceInputBuilder
impl UpdateAppVersionResourceInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateAppVersionResourceOutput, SdkError<UpdateAppVersionResourceError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateAppVersionResourceOutput, SdkError<UpdateAppVersionResourceError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateAppVersionResourceInputBuilder
impl Clone for UpdateAppVersionResourceInputBuilder
source§fn clone(&self) -> UpdateAppVersionResourceInputBuilder
fn clone(&self) -> UpdateAppVersionResourceInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateAppVersionResourceInputBuilder
impl Default for UpdateAppVersionResourceInputBuilder
source§fn default() -> UpdateAppVersionResourceInputBuilder
fn default() -> UpdateAppVersionResourceInputBuilder
source§impl PartialEq for UpdateAppVersionResourceInputBuilder
impl PartialEq for UpdateAppVersionResourceInputBuilder
source§fn eq(&self, other: &UpdateAppVersionResourceInputBuilder) -> bool
fn eq(&self, other: &UpdateAppVersionResourceInputBuilder) -> bool
self and other values to be equal, and is used
by ==.