#[non_exhaustive]pub struct EbsSnapshotConfiguration { /* private fields */ }
Expand description
The proposed access control configuration for an Amazon EBS volume snapshot. You can propose a configuration for a new Amazon EBS volume snapshot or an Amazon EBS volume snapshot that you own by specifying the user IDs, groups, and optional KMS encryption key. For more information, see ModifySnapshotAttribute.
Implementations§
source§impl EbsSnapshotConfiguration
impl EbsSnapshotConfiguration
sourcepub fn user_ids(&self) -> Option<&[String]>
pub fn user_ids(&self) -> Option<&[String]>
The IDs of the Amazon Web Services accounts that have access to the Amazon EBS volume snapshot.
-
If the configuration is for an existing Amazon EBS volume snapshot and you do not specify the
userIds
, then the access preview uses the existing shareduserIds
for the snapshot. -
If the access preview is for a new resource and you do not specify the
userIds
, then the access preview considers the snapshot without anyuserIds
. -
To propose deletion of existing shared
accountIds
, you can specify an empty list foruserIds
.
sourcepub fn groups(&self) -> Option<&[String]>
pub fn groups(&self) -> Option<&[String]>
The groups that have access to the Amazon EBS volume snapshot. If the value all
is specified, then the Amazon EBS volume snapshot is public.
-
If the configuration is for an existing Amazon EBS volume snapshot and you do not specify the
groups
, then the access preview uses the existing sharedgroups
for the snapshot. -
If the access preview is for a new resource and you do not specify the
groups
, then the access preview considers the snapshot without anygroups
. -
To propose deletion of existing shared
groups
, you can specify an empty list forgroups
.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The KMS key identifier for an encrypted Amazon EBS volume snapshot. The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
-
If the configuration is for an existing Amazon EBS volume snapshot and you do not specify the
kmsKeyId
, or you specify an empty string, then the access preview uses the existingkmsKeyId
of the snapshot. -
If the access preview is for a new resource and you do not specify the
kmsKeyId
, the access preview considers the snapshot as unencrypted.
source§impl EbsSnapshotConfiguration
impl EbsSnapshotConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EbsSnapshotConfiguration
.
Trait Implementations§
source§impl Clone for EbsSnapshotConfiguration
impl Clone for EbsSnapshotConfiguration
source§fn clone(&self) -> EbsSnapshotConfiguration
fn clone(&self) -> EbsSnapshotConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EbsSnapshotConfiguration
impl Debug for EbsSnapshotConfiguration
source§impl PartialEq<EbsSnapshotConfiguration> for EbsSnapshotConfiguration
impl PartialEq<EbsSnapshotConfiguration> for EbsSnapshotConfiguration
source§fn eq(&self, other: &EbsSnapshotConfiguration) -> bool
fn eq(&self, other: &EbsSnapshotConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.