#[non_exhaustive]pub struct UpdateAppAuthorizationInput {
pub app_bundle_identifier: Option<String>,
pub app_authorization_identifier: Option<String>,
pub credential: Option<Credential>,
pub tenant: Option<Tenant>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.app_bundle_identifier: Option<String>
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.
credential: Option<Credential>
Contains credentials for the application, such as an API key or OAuth2 client ID and secret.
Specify credentials that match the authorization type of the app authorization to update. For example, if the authorization type of the app authorization is OAuth2 (oauth2
), then you should provide only the OAuth2 credentials.
tenant: Option<Tenant>
Contains information about an application tenant, such as the application display name and identifier.
Implementations§
source§impl UpdateAppAuthorizationInput
impl UpdateAppAuthorizationInput
sourcepub fn app_bundle_identifier(&self) -> Option<&str>
pub fn app_bundle_identifier(&self) -> Option<&str>
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.
sourcepub fn credential(&self) -> Option<&Credential>
pub fn credential(&self) -> Option<&Credential>
Contains credentials for the application, such as an API key or OAuth2 client ID and secret.
Specify credentials that match the authorization type of the app authorization to update. For example, if the authorization type of the app authorization is OAuth2 (oauth2
), then you should provide only the OAuth2 credentials.
source§impl UpdateAppAuthorizationInput
impl UpdateAppAuthorizationInput
sourcepub fn builder() -> UpdateAppAuthorizationInputBuilder
pub fn builder() -> UpdateAppAuthorizationInputBuilder
Creates a new builder-style object to manufacture UpdateAppAuthorizationInput
.
Trait Implementations§
source§impl Clone for UpdateAppAuthorizationInput
impl Clone for UpdateAppAuthorizationInput
source§fn clone(&self) -> UpdateAppAuthorizationInput
fn clone(&self) -> UpdateAppAuthorizationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateAppAuthorizationInput
impl Debug for UpdateAppAuthorizationInput
source§impl PartialEq for UpdateAppAuthorizationInput
impl PartialEq for UpdateAppAuthorizationInput
source§fn eq(&self, other: &UpdateAppAuthorizationInput) -> bool
fn eq(&self, other: &UpdateAppAuthorizationInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateAppAuthorizationInput
Auto Trait Implementations§
impl Freeze for UpdateAppAuthorizationInput
impl RefUnwindSafe for UpdateAppAuthorizationInput
impl Send for UpdateAppAuthorizationInput
impl Sync for UpdateAppAuthorizationInput
impl Unpin for UpdateAppAuthorizationInput
impl UnwindSafe for UpdateAppAuthorizationInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more