pub struct CreateConnectionOutput {
pub connection_arn: String,
pub tags: Option<Vec<Tag>>,
}Fields§
§connection_arn: StringThe Amazon Resource Name (ARN) of the connection to be created. The ARN is used as the connection reference when the connection is shared between AWS services.
The ARN is never reused if the connection is deleted.
Specifies the tags applied to the resource.
Trait Implementations§
Source§impl Clone for CreateConnectionOutput
impl Clone for CreateConnectionOutput
Source§fn clone(&self) -> CreateConnectionOutput
fn clone(&self) -> CreateConnectionOutput
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 Debug for CreateConnectionOutput
impl Debug for CreateConnectionOutput
Source§impl Default for CreateConnectionOutput
impl Default for CreateConnectionOutput
Source§fn default() -> CreateConnectionOutput
fn default() -> CreateConnectionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateConnectionOutput
impl<'de> Deserialize<'de> for CreateConnectionOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateConnectionOutput
impl PartialEq for CreateConnectionOutput
impl StructuralPartialEq for CreateConnectionOutput
Auto Trait Implementations§
impl Freeze for CreateConnectionOutput
impl RefUnwindSafe for CreateConnectionOutput
impl Send for CreateConnectionOutput
impl Sync for CreateConnectionOutput
impl Unpin for CreateConnectionOutput
impl UnwindSafe for CreateConnectionOutput
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