#[non_exhaustive]pub struct CreateAppBundleInput {
pub client_token: Option<String>,
pub customer_managed_key_identifier: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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.client_token: Option<String>
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same ClientToken
, but with different parameters, the retry fails with an IdempotentParameterMismatch
error.
customer_managed_key_identifier: Option<String>
The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If this is not specified, an Amazon Web Services owned key is used for encryption.
A map of the key-value pairs of the tag or tags to assign to the resource.
Implementations§
source§impl CreateAppBundleInput
impl CreateAppBundleInput
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same ClientToken
, but with different parameters, the retry fails with an IdempotentParameterMismatch
error.
sourcepub fn customer_managed_key_identifier(&self) -> Option<&str>
pub fn customer_managed_key_identifier(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If this is not specified, an Amazon Web Services owned key is used for encryption.
A map of the key-value pairs of the tag or tags to assign to the resource.
source§impl CreateAppBundleInput
impl CreateAppBundleInput
sourcepub fn builder() -> CreateAppBundleInputBuilder
pub fn builder() -> CreateAppBundleInputBuilder
Creates a new builder-style object to manufacture CreateAppBundleInput
.
Trait Implementations§
source§impl Clone for CreateAppBundleInput
impl Clone for CreateAppBundleInput
source§fn clone(&self) -> CreateAppBundleInput
fn clone(&self) -> CreateAppBundleInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateAppBundleInput
impl Debug for CreateAppBundleInput
source§impl PartialEq<CreateAppBundleInput> for CreateAppBundleInput
impl PartialEq<CreateAppBundleInput> for CreateAppBundleInput
source§fn eq(&self, other: &CreateAppBundleInput) -> bool
fn eq(&self, other: &CreateAppBundleInput) -> bool
self
and other
values to be equal, and is used
by ==
.