pub struct AllowedPublishers {
pub signing_profile_version_arns: Vec<String>,
}
Expand description
List of signing profiles that can sign a code package.
Fields§
§signing_profile_version_arns: Vec<String>
The Amazon Resource Name (ARN) for each of the signing profiles. A signing profile defines a trusted user who can sign a code package.
Trait Implementations§
Source§impl Clone for AllowedPublishers
impl Clone for AllowedPublishers
Source§fn clone(&self) -> AllowedPublishers
fn clone(&self) -> AllowedPublishers
Returns a duplicate 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 AllowedPublishers
impl Debug for AllowedPublishers
Source§impl Default for AllowedPublishers
impl Default for AllowedPublishers
Source§fn default() -> AllowedPublishers
fn default() -> AllowedPublishers
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AllowedPublishers
impl<'de> Deserialize<'de> for AllowedPublishers
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AllowedPublishers
impl PartialEq for AllowedPublishers
Source§impl Serialize for AllowedPublishers
impl Serialize for AllowedPublishers
impl StructuralPartialEq for AllowedPublishers
Auto Trait Implementations§
impl Freeze for AllowedPublishers
impl RefUnwindSafe for AllowedPublishers
impl Send for AllowedPublishers
impl Sync for AllowedPublishers
impl Unpin for AllowedPublishers
impl UnwindSafe for AllowedPublishers
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