Struct aws_sdk_serverlessapplicationrepository::operation::unshare_application::UnshareApplicationInput   
source · #[non_exhaustive]pub struct UnshareApplicationInput {
    pub application_id: Option<String>,
    pub organization_id: Option<String>,
}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.application_id: Option<String>The Amazon Resource Name (ARN) of the application.
organization_id: Option<String>The AWS Organization ID to unshare the application from.
Implementations§
sourcepub fn application_id(&self) -> Option<&str>
 
pub fn application_id(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the application.
sourcepub fn organization_id(&self) -> Option<&str>
 
pub fn organization_id(&self) -> Option<&str>
The AWS Organization ID to unshare the application from.
sourcepub fn builder() -> UnshareApplicationInputBuilder
 
pub fn builder() -> UnshareApplicationInputBuilder
Creates a new builder-style object to manufacture UnshareApplicationInput.
Trait Implementations§
source§fn clone(&self) -> UnshareApplicationInput
 
fn clone(&self) -> UnshareApplicationInput
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§fn eq(&self, other: &UnshareApplicationInput) -> bool
 
fn eq(&self, other: &UnshareApplicationInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.Auto Trait Implementations§
Blanket Implementations§
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more