Struct aws_sdk_codepipeline::types::ActionTypePermissions
source · #[non_exhaustive]pub struct ActionTypePermissions {
pub allowed_accounts: Option<Vec<String>>,
}
Expand description
Details identifying the users with permissions to use the action type.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.allowed_accounts: Option<Vec<String>>
A list of Amazon Web Services account IDs with access to use the action type in their pipelines.
Implementations§
source§impl ActionTypePermissions
impl ActionTypePermissions
sourcepub fn allowed_accounts(&self) -> Option<&[String]>
pub fn allowed_accounts(&self) -> Option<&[String]>
A list of Amazon Web Services account IDs with access to use the action type in their pipelines.
source§impl ActionTypePermissions
impl ActionTypePermissions
sourcepub fn builder() -> ActionTypePermissionsBuilder
pub fn builder() -> ActionTypePermissionsBuilder
Creates a new builder-style object to manufacture ActionTypePermissions
.
Trait Implementations§
source§impl Clone for ActionTypePermissions
impl Clone for ActionTypePermissions
source§fn clone(&self) -> ActionTypePermissions
fn clone(&self) -> ActionTypePermissions
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 ActionTypePermissions
impl Debug for ActionTypePermissions
source§impl PartialEq<ActionTypePermissions> for ActionTypePermissions
impl PartialEq<ActionTypePermissions> for ActionTypePermissions
source§fn eq(&self, other: &ActionTypePermissions) -> bool
fn eq(&self, other: &ActionTypePermissions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ActionTypePermissions
Auto Trait Implementations§
impl RefUnwindSafe for ActionTypePermissions
impl Send for ActionTypePermissions
impl Sync for ActionTypePermissions
impl Unpin for ActionTypePermissions
impl UnwindSafe for ActionTypePermissions
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