pub struct AwsEcrArtifactRegistryHeartbeatData {
pub pull_role_arn: Option<String>,
pub push_role_arn: Option<String>,
pub region: String,
pub registry_id: String,
pub registry_uri: String,
pub repositories: Vec<AwsEcrRepositoryHeartbeatData>,
pub repositories_truncated: bool,
pub repository_count: i32,
pub repository_prefix: String,
pub status: ArtifactRegistryHeartbeatStatus,
}Expand description
AwsEcrArtifactRegistryHeartbeatData
JSON schema
{
"type": "object",
"required": [
"region",
"registryId",
"registryUri",
"repositories",
"repositoriesTruncated",
"repositoryCount",
"repositoryPrefix",
"status"
],
"properties": {
"pullRoleArn": {
"type": [
"string",
"null"
]
},
"pushRoleArn": {
"type": [
"string",
"null"
]
},
"region": {
"type": "string"
},
"registryId": {
"type": "string"
},
"registryUri": {
"type": "string"
},
"repositories": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AwsEcrRepositoryHeartbeatData"
}
},
"repositoriesTruncated": {
"type": "boolean"
},
"repositoryCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"repositoryPrefix": {
"type": "string"
},
"status": {
"$ref": "#/components/schemas/ArtifactRegistryHeartbeatStatus"
}
}
}Fields§
§pull_role_arn: Option<String>§push_role_arn: Option<String>§region: String§registry_id: String§registry_uri: String§repositories: Vec<AwsEcrRepositoryHeartbeatData>§repositories_truncated: bool§repository_count: i32§repository_prefix: String§status: ArtifactRegistryHeartbeatStatusImplementations§
Trait Implementations§
Source§impl Clone for AwsEcrArtifactRegistryHeartbeatData
impl Clone for AwsEcrArtifactRegistryHeartbeatData
Source§fn clone(&self) -> AwsEcrArtifactRegistryHeartbeatData
fn clone(&self) -> AwsEcrArtifactRegistryHeartbeatData
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 AwsEcrArtifactRegistryHeartbeatData
impl<'de> Deserialize<'de> for AwsEcrArtifactRegistryHeartbeatData
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<&AwsEcrArtifactRegistryHeartbeatData> for AwsEcrArtifactRegistryHeartbeatData
impl From<&AwsEcrArtifactRegistryHeartbeatData> for AwsEcrArtifactRegistryHeartbeatData
Source§fn from(value: &AwsEcrArtifactRegistryHeartbeatData) -> Self
fn from(value: &AwsEcrArtifactRegistryHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AwsEcrArtifactRegistryHeartbeatData> for AwsEcrArtifactRegistryHeartbeatData
impl From<AwsEcrArtifactRegistryHeartbeatData> for AwsEcrArtifactRegistryHeartbeatData
Source§fn from(value: AwsEcrArtifactRegistryHeartbeatData) -> Self
fn from(value: AwsEcrArtifactRegistryHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AwsEcrArtifactRegistryHeartbeatData> for AwsEcrArtifactRegistryHeartbeatData
impl TryFrom<AwsEcrArtifactRegistryHeartbeatData> for AwsEcrArtifactRegistryHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AwsEcrArtifactRegistryHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AwsEcrArtifactRegistryHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AwsEcrArtifactRegistryHeartbeatData
impl RefUnwindSafe for AwsEcrArtifactRegistryHeartbeatData
impl Send for AwsEcrArtifactRegistryHeartbeatData
impl Sync for AwsEcrArtifactRegistryHeartbeatData
impl Unpin for AwsEcrArtifactRegistryHeartbeatData
impl UnsafeUnpin for AwsEcrArtifactRegistryHeartbeatData
impl UnwindSafe for AwsEcrArtifactRegistryHeartbeatData
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