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