pub struct AwsEcrRepositoryHeartbeatData {
pub created_at: f64,
pub encryption_type: Option<String>,
pub image_tag_mutability: Option<String>,
pub kms_key_present: bool,
pub registry_id: String,
pub repository_arn: String,
pub repository_name: String,
pub repository_uri: String,
pub scan_on_push: Option<bool>,
}Expand description
AwsEcrRepositoryHeartbeatData
JSON schema
{
"type": "object",
"required": [
"createdAt",
"kmsKeyPresent",
"registryId",
"repositoryArn",
"repositoryName",
"repositoryUri"
],
"properties": {
"createdAt": {
"type": "number",
"format": "double"
},
"encryptionType": {
"type": [
"string",
"null"
]
},
"imageTagMutability": {
"type": [
"string",
"null"
]
},
"kmsKeyPresent": {
"type": "boolean"
},
"registryId": {
"type": "string"
},
"repositoryArn": {
"type": "string"
},
"repositoryName": {
"type": "string"
},
"repositoryUri": {
"type": "string"
},
"scanOnPush": {
"type": [
"boolean",
"null"
]
}
}
}Fields§
§created_at: f64§encryption_type: Option<String>§image_tag_mutability: Option<String>§kms_key_present: bool§registry_id: String§repository_arn: String§repository_name: String§repository_uri: String§scan_on_push: Option<bool>Implementations§
Trait Implementations§
Source§impl Clone for AwsEcrRepositoryHeartbeatData
impl Clone for AwsEcrRepositoryHeartbeatData
Source§fn clone(&self) -> AwsEcrRepositoryHeartbeatData
fn clone(&self) -> AwsEcrRepositoryHeartbeatData
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<'de> Deserialize<'de> for AwsEcrRepositoryHeartbeatData
impl<'de> Deserialize<'de> for AwsEcrRepositoryHeartbeatData
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 From<&AwsEcrRepositoryHeartbeatData> for AwsEcrRepositoryHeartbeatData
impl From<&AwsEcrRepositoryHeartbeatData> for AwsEcrRepositoryHeartbeatData
Source§fn from(value: &AwsEcrRepositoryHeartbeatData) -> Self
fn from(value: &AwsEcrRepositoryHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AwsEcrRepositoryHeartbeatData> for AwsEcrRepositoryHeartbeatData
impl From<AwsEcrRepositoryHeartbeatData> for AwsEcrRepositoryHeartbeatData
Source§fn from(value: AwsEcrRepositoryHeartbeatData) -> Self
fn from(value: AwsEcrRepositoryHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AwsEcrRepositoryHeartbeatData> for AwsEcrRepositoryHeartbeatData
impl TryFrom<AwsEcrRepositoryHeartbeatData> for AwsEcrRepositoryHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AwsEcrRepositoryHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AwsEcrRepositoryHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AwsEcrRepositoryHeartbeatData
impl RefUnwindSafe for AwsEcrRepositoryHeartbeatData
impl Send for AwsEcrRepositoryHeartbeatData
impl Sync for AwsEcrRepositoryHeartbeatData
impl Unpin for AwsEcrRepositoryHeartbeatData
impl UnsafeUnpin for AwsEcrRepositoryHeartbeatData
impl UnwindSafe for AwsEcrRepositoryHeartbeatData
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