[−][src]Struct rusoto_xray::PutEncryptionConfigRequest
Fields
key_id: Option<String>
An AWS KMS customer master key (CMK) in one of the following formats:
-
Alias - The name of the key. For example,
alias/MyKey
. -
Key ID - The KMS key ID of the key. For example,
ae4aa6d49-a4d8-9df9-a475-4ff6d7898456
. -
ARN - The full Amazon Resource Name of the key ID or alias. For example,
arn:aws:kms:us-east-2:123456789012:key/ae4aa6d49-a4d8-9df9-a475-4ff6d7898456
. Use this format to specify a key in a different account.
Omit this key if you set Type
to NONE
.
type_: String
The type of encryption. Set to KMS
to use your own key for encryption. Set to NONE
for default encryption.
Trait Implementations
impl PartialEq<PutEncryptionConfigRequest> for PutEncryptionConfigRequest
[src]
fn eq(&self, other: &PutEncryptionConfigRequest) -> bool
[src]
fn ne(&self, other: &PutEncryptionConfigRequest) -> bool
[src]
impl Default for PutEncryptionConfigRequest
[src]
impl Clone for PutEncryptionConfigRequest
[src]
fn clone(&self) -> PutEncryptionConfigRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for PutEncryptionConfigRequest
[src]
impl Serialize for PutEncryptionConfigRequest
[src]
Auto Trait Implementations
impl Send for PutEncryptionConfigRequest
impl Sync for PutEncryptionConfigRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self