Struct aws_sdk_ec2::types::AssociatedRole
source · #[non_exhaustive]pub struct AssociatedRole { /* private fields */ }
Expand description
Information about the associated IAM roles.
Implementations§
source§impl AssociatedRole
impl AssociatedRole
sourcepub fn associated_role_arn(&self) -> Option<&str>
pub fn associated_role_arn(&self) -> Option<&str>
The ARN of the associated IAM role.
sourcepub fn certificate_s3_bucket_name(&self) -> Option<&str>
pub fn certificate_s3_bucket_name(&self) -> Option<&str>
The name of the Amazon S3 bucket in which the Amazon S3 object is stored.
sourcepub fn certificate_s3_object_key(&self) -> Option<&str>
pub fn certificate_s3_object_key(&self) -> Option<&str>
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: role_arn
/certificate_arn
.
sourcepub fn encryption_kms_key_id(&self) -> Option<&str>
pub fn encryption_kms_key_id(&self) -> Option<&str>
The ID of the KMS customer master key (CMK) used to encrypt the private key.
source§impl AssociatedRole
impl AssociatedRole
sourcepub fn builder() -> AssociatedRoleBuilder
pub fn builder() -> AssociatedRoleBuilder
Creates a new builder-style object to manufacture AssociatedRole
.
Trait Implementations§
source§impl Clone for AssociatedRole
impl Clone for AssociatedRole
source§fn clone(&self) -> AssociatedRole
fn clone(&self) -> AssociatedRole
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AssociatedRole
impl Debug for AssociatedRole
source§impl PartialEq<AssociatedRole> for AssociatedRole
impl PartialEq<AssociatedRole> for AssociatedRole
source§fn eq(&self, other: &AssociatedRole) -> bool
fn eq(&self, other: &AssociatedRole) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssociatedRole
Auto Trait Implementations§
impl RefUnwindSafe for AssociatedRole
impl Send for AssociatedRole
impl Sync for AssociatedRole
impl Unpin for AssociatedRole
impl UnwindSafe for AssociatedRole
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more