#[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<UpdateAppAuthorizationInput> for UpdateAppAuthorizationInput
impl PartialEq<UpdateAppAuthorizationInput> 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 ==
.