#[non_exhaustive]pub struct AssetBundleExportJobVpcConnectionOverrideProperties {
pub arn: Option<String>,
pub properties: Option<Vec<AssetBundleExportJobVpcConnectionPropertyToOverride>>,
}Expand description
Controls how a specific VPCConnection resource is parameterized in the outputted CloudFormation template.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.arn: Option<String>The ARN of the specific VPCConnection resource whose override properties are configured in this structure.
properties: Option<Vec<AssetBundleExportJobVpcConnectionPropertyToOverride>>A list of VPCConnection resource properties to generate variables for in the returned CloudFormation template.
Implementations§
source§impl AssetBundleExportJobVpcConnectionOverrideProperties
impl AssetBundleExportJobVpcConnectionOverrideProperties
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The ARN of the specific VPCConnection resource whose override properties are configured in this structure.
sourcepub fn properties(
&self
) -> Option<&[AssetBundleExportJobVpcConnectionPropertyToOverride]>
pub fn properties( &self ) -> Option<&[AssetBundleExportJobVpcConnectionPropertyToOverride]>
A list of VPCConnection resource properties to generate variables for in the returned CloudFormation template.
source§impl AssetBundleExportJobVpcConnectionOverrideProperties
impl AssetBundleExportJobVpcConnectionOverrideProperties
sourcepub fn builder() -> AssetBundleExportJobVpcConnectionOverridePropertiesBuilder
pub fn builder() -> AssetBundleExportJobVpcConnectionOverridePropertiesBuilder
Creates a new builder-style object to manufacture AssetBundleExportJobVpcConnectionOverrideProperties.
Trait Implementations§
source§impl Clone for AssetBundleExportJobVpcConnectionOverrideProperties
impl Clone for AssetBundleExportJobVpcConnectionOverrideProperties
source§fn clone(&self) -> AssetBundleExportJobVpcConnectionOverrideProperties
fn clone(&self) -> AssetBundleExportJobVpcConnectionOverrideProperties
Returns a copy 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 PartialEq<AssetBundleExportJobVpcConnectionOverrideProperties> for AssetBundleExportJobVpcConnectionOverrideProperties
impl PartialEq<AssetBundleExportJobVpcConnectionOverrideProperties> for AssetBundleExportJobVpcConnectionOverrideProperties
source§fn eq(
&self,
other: &AssetBundleExportJobVpcConnectionOverrideProperties
) -> bool
fn eq( &self, other: &AssetBundleExportJobVpcConnectionOverrideProperties ) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssetBundleExportJobVpcConnectionOverrideProperties
Auto Trait Implementations§
impl RefUnwindSafe for AssetBundleExportJobVpcConnectionOverrideProperties
impl Send for AssetBundleExportJobVpcConnectionOverrideProperties
impl Sync for AssetBundleExportJobVpcConnectionOverrideProperties
impl Unpin for AssetBundleExportJobVpcConnectionOverrideProperties
impl UnwindSafe for AssetBundleExportJobVpcConnectionOverrideProperties
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