pub struct ProfileRecord {
pub id: String,
pub application_id: String,
pub name: String,
pub description: Option<String>,
pub location_uri: String,
pub retrieval_role_arn: Option<String>,
pub validators: Value,
pub profile_type: String,
pub kms_key_arn: Option<String>,
pub kms_key_identifier: Option<String>,
pub hosted_versions: BTreeMap<i64, HostedVersionRecord>,
pub next_version_number: i64,
}Expand description
A configuration profile, nested under an application.
Fields§
§id: String§application_id: String§name: String§description: Option<String>§location_uri: String§retrieval_role_arn: Option<String>§validators: Value§profile_type: String§kms_key_arn: Option<String>§kms_key_identifier: Option<String>§hosted_versions: BTreeMap<i64, HostedVersionRecord>§next_version_number: i64Trait Implementations§
Source§impl Clone for ProfileRecord
impl Clone for ProfileRecord
Source§fn clone(&self) -> ProfileRecord
fn clone(&self) -> ProfileRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProfileRecord
impl Debug for ProfileRecord
Source§impl<'de> Deserialize<'de> for ProfileRecord
impl<'de> Deserialize<'de> for ProfileRecord
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
Auto Trait Implementations§
impl Freeze for ProfileRecord
impl RefUnwindSafe for ProfileRecord
impl Send for ProfileRecord
impl Sync for ProfileRecord
impl Unpin for ProfileRecord
impl UnsafeUnpin for ProfileRecord
impl UnwindSafe for ProfileRecord
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