pub struct AwsRemoteStackManagementHeartbeatData {
pub management_permissions_applied: bool,
pub role_arn: Option<String>,
pub role_name: Option<String>,
pub status: RemoteStackManagementHeartbeatStatus,
}Expand description
AwsRemoteStackManagementHeartbeatData
JSON schema
{
"type": "object",
"required": [
"managementPermissionsApplied",
"status"
],
"properties": {
"managementPermissionsApplied": {
"type": "boolean"
},
"roleArn": {
"type": [
"string",
"null"
]
},
"roleName": {
"type": [
"string",
"null"
]
},
"status": {
"$ref": "#/components/schemas/RemoteStackManagementHeartbeatStatus"
}
}
}Fields§
§management_permissions_applied: bool§role_arn: Option<String>§role_name: Option<String>§status: RemoteStackManagementHeartbeatStatusImplementations§
Trait Implementations§
Source§impl Clone for AwsRemoteStackManagementHeartbeatData
impl Clone for AwsRemoteStackManagementHeartbeatData
Source§fn clone(&self) -> AwsRemoteStackManagementHeartbeatData
fn clone(&self) -> AwsRemoteStackManagementHeartbeatData
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 AwsRemoteStackManagementHeartbeatData
impl<'de> Deserialize<'de> for AwsRemoteStackManagementHeartbeatData
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<&AwsRemoteStackManagementHeartbeatData> for AwsRemoteStackManagementHeartbeatData
impl From<&AwsRemoteStackManagementHeartbeatData> for AwsRemoteStackManagementHeartbeatData
Source§fn from(value: &AwsRemoteStackManagementHeartbeatData) -> Self
fn from(value: &AwsRemoteStackManagementHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AwsRemoteStackManagementHeartbeatData> for AwsRemoteStackManagementHeartbeatData
impl From<AwsRemoteStackManagementHeartbeatData> for AwsRemoteStackManagementHeartbeatData
Source§fn from(value: AwsRemoteStackManagementHeartbeatData) -> Self
fn from(value: AwsRemoteStackManagementHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AwsRemoteStackManagementHeartbeatData> for AwsRemoteStackManagementHeartbeatData
impl TryFrom<AwsRemoteStackManagementHeartbeatData> for AwsRemoteStackManagementHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AwsRemoteStackManagementHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AwsRemoteStackManagementHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AwsRemoteStackManagementHeartbeatData
impl RefUnwindSafe for AwsRemoteStackManagementHeartbeatData
impl Send for AwsRemoteStackManagementHeartbeatData
impl Sync for AwsRemoteStackManagementHeartbeatData
impl Unpin for AwsRemoteStackManagementHeartbeatData
impl UnsafeUnpin for AwsRemoteStackManagementHeartbeatData
impl UnwindSafe for AwsRemoteStackManagementHeartbeatData
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