pub struct AddApplicationVpcConfigurationRequest {
pub application_name: String,
pub current_application_version_id: i64,
pub vpc_configuration: VpcConfiguration,
}Fields§
§application_name: StringThe name of an existing application.
current_application_version_id: i64The version of the application to which you want to add the input processing configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.
vpc_configuration: VpcConfigurationDescription of the VPC to add to the application.
Trait Implementations§
Source§impl Clone for AddApplicationVpcConfigurationRequest
impl Clone for AddApplicationVpcConfigurationRequest
Source§fn clone(&self) -> AddApplicationVpcConfigurationRequest
fn clone(&self) -> AddApplicationVpcConfigurationRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AddApplicationVpcConfigurationRequest
impl Default for AddApplicationVpcConfigurationRequest
Source§fn default() -> AddApplicationVpcConfigurationRequest
fn default() -> AddApplicationVpcConfigurationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for AddApplicationVpcConfigurationRequest
impl PartialEq for AddApplicationVpcConfigurationRequest
Source§fn eq(&self, other: &AddApplicationVpcConfigurationRequest) -> bool
fn eq(&self, other: &AddApplicationVpcConfigurationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddApplicationVpcConfigurationRequest
Auto Trait Implementations§
impl Freeze for AddApplicationVpcConfigurationRequest
impl RefUnwindSafe for AddApplicationVpcConfigurationRequest
impl Send for AddApplicationVpcConfigurationRequest
impl Sync for AddApplicationVpcConfigurationRequest
impl Unpin for AddApplicationVpcConfigurationRequest
impl UnwindSafe for AddApplicationVpcConfigurationRequest
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
Mutably borrows from an owned value. Read more