[][src]Struct rusoto_ec2::AssociatedRole

pub struct AssociatedRole {
    pub associated_role_arn: Option<String>,
    pub certificate_s3_bucket_name: Option<String>,
    pub certificate_s3_object_key: Option<String>,
    pub encryption_kms_key_id: Option<String>,
}

Information about the associated IAM roles.

Fields

associated_role_arn: Option<String>

The ARN of the associated IAM role.

certificate_s3_bucket_name: Option<String>

The name of the Amazon S3 bucket in which the Amazon S3 object is stored.

certificate_s3_object_key: Option<String>

The key of the Amazon S3 object ey where the certificate, certificate chain, and encrypted private key bundle is stored. The object key is formated as follows: certificate_arn/role_arn.

encryption_kms_key_id: Option<String>

The ID of the KMS customer master key (CMK) used to encrypt the private key.

Trait Implementations

impl Clone for AssociatedRole[src]

impl Debug for AssociatedRole[src]

impl Default for AssociatedRole[src]

impl PartialEq<AssociatedRole> for AssociatedRole[src]

impl StructuralPartialEq for AssociatedRole[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.