pub struct AwsParameterStoreVaultHeartbeatData {Show 13 fields
pub account_id: String,
pub has_more_parameters: Option<bool>,
pub latest_modified_at: Option<DateTime<Utc>>,
pub parameter_metadata_sampled: bool,
pub prefix: String,
pub region: String,
pub sampled_advanced_tier_count: Option<i32>,
pub sampled_kms_key_metadata_present_count: Option<i32>,
pub sampled_parameter_count: Option<i32>,
pub sampled_secure_string_count: Option<i32>,
pub sampled_string_count: Option<i32>,
pub sampled_string_list_count: Option<i32>,
pub status: VaultHeartbeatStatus,
}Expand description
AwsParameterStoreVaultHeartbeatData
JSON schema
{
"type": "object",
"required": [
"accountId",
"parameterMetadataSampled",
"prefix",
"region",
"status"
],
"properties": {
"accountId": {
"type": "string"
},
"hasMoreParameters": {
"type": [
"boolean",
"null"
]
},
"latestModifiedAt": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"parameterMetadataSampled": {
"type": "boolean"
},
"prefix": {
"type": "string"
},
"region": {
"type": "string"
},
"sampledAdvancedTierCount": {
"type": [
"integer",
"null"
],
"format": "int32",
"minimum": 0.0
},
"sampledKmsKeyMetadataPresentCount": {
"type": [
"integer",
"null"
],
"format": "int32",
"minimum": 0.0
},
"sampledParameterCount": {
"type": [
"integer",
"null"
],
"format": "int32",
"minimum": 0.0
},
"sampledSecureStringCount": {
"type": [
"integer",
"null"
],
"format": "int32",
"minimum": 0.0
},
"sampledStringCount": {
"type": [
"integer",
"null"
],
"format": "int32",
"minimum": 0.0
},
"sampledStringListCount": {
"type": [
"integer",
"null"
],
"format": "int32",
"minimum": 0.0
},
"status": {
"$ref": "#/components/schemas/VaultHeartbeatStatus"
}
}
}Fields§
§account_id: String§has_more_parameters: Option<bool>§latest_modified_at: Option<DateTime<Utc>>§parameter_metadata_sampled: bool§prefix: String§region: String§sampled_advanced_tier_count: Option<i32>§sampled_kms_key_metadata_present_count: Option<i32>§sampled_parameter_count: Option<i32>§sampled_secure_string_count: Option<i32>§sampled_string_count: Option<i32>§sampled_string_list_count: Option<i32>§status: VaultHeartbeatStatusImplementations§
Trait Implementations§
Source§impl Clone for AwsParameterStoreVaultHeartbeatData
impl Clone for AwsParameterStoreVaultHeartbeatData
Source§fn clone(&self) -> AwsParameterStoreVaultHeartbeatData
fn clone(&self) -> AwsParameterStoreVaultHeartbeatData
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 AwsParameterStoreVaultHeartbeatData
impl<'de> Deserialize<'de> for AwsParameterStoreVaultHeartbeatData
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<&AwsParameterStoreVaultHeartbeatData> for AwsParameterStoreVaultHeartbeatData
impl From<&AwsParameterStoreVaultHeartbeatData> for AwsParameterStoreVaultHeartbeatData
Source§fn from(value: &AwsParameterStoreVaultHeartbeatData) -> Self
fn from(value: &AwsParameterStoreVaultHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AwsParameterStoreVaultHeartbeatData> for AwsParameterStoreVaultHeartbeatData
impl From<AwsParameterStoreVaultHeartbeatData> for AwsParameterStoreVaultHeartbeatData
Source§fn from(value: AwsParameterStoreVaultHeartbeatData) -> Self
fn from(value: AwsParameterStoreVaultHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AwsParameterStoreVaultHeartbeatData> for AwsParameterStoreVaultHeartbeatData
impl TryFrom<AwsParameterStoreVaultHeartbeatData> for AwsParameterStoreVaultHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AwsParameterStoreVaultHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AwsParameterStoreVaultHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AwsParameterStoreVaultHeartbeatData
impl RefUnwindSafe for AwsParameterStoreVaultHeartbeatData
impl Send for AwsParameterStoreVaultHeartbeatData
impl Sync for AwsParameterStoreVaultHeartbeatData
impl Unpin for AwsParameterStoreVaultHeartbeatData
impl UnsafeUnpin for AwsParameterStoreVaultHeartbeatData
impl UnwindSafe for AwsParameterStoreVaultHeartbeatData
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