#[non_exhaustive]pub struct ModifyAuthenticationProfileInput {
pub authentication_profile_name: Option<String>,
pub authentication_profile_content: Option<String>,
}
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.authentication_profile_name: Option<String>
The name of the authentication profile to replace.
authentication_profile_content: Option<String>
The new content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyAuthenticationProfile, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyAuthenticationProfile, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ModifyAuthenticationProfile
>
Creates a new builder-style object to manufacture ModifyAuthenticationProfileInput
The name of the authentication profile to replace.
The new content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ModifyAuthenticationProfileInput
impl Sync for ModifyAuthenticationProfileInput
impl Unpin for ModifyAuthenticationProfileInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more