pub struct AwsIamRoleServiceAccountHeartbeatData {Show 20 fields
pub assume_role_policy_present: bool,
pub attached_policy_count: i32,
pub attached_policy_names: Vec<String>,
pub create_date: String,
pub description: Option<String>,
pub inline_policy_count: i32,
pub inline_policy_names: Vec<String>,
pub last_used_date: Option<String>,
pub last_used_region: Option<String>,
pub managed_tag_count: i32,
pub max_session_duration: Option<i32>,
pub path: String,
pub permissions_boundary_arn: Option<String>,
pub permissions_boundary_type: Option<String>,
pub role_arn: String,
pub role_id: String,
pub role_name: String,
pub stack_permissions_applied: bool,
pub status: ServiceAccountHeartbeatStatus,
pub tag_count: i32,
}Expand description
AwsIamRoleServiceAccountHeartbeatData
JSON schema
{
"type": "object",
"required": [
"assumeRolePolicyPresent",
"attachedPolicyCount",
"attachedPolicyNames",
"createDate",
"inlinePolicyCount",
"inlinePolicyNames",
"managedTagCount",
"path",
"roleArn",
"roleId",
"roleName",
"stackPermissionsApplied",
"status",
"tagCount"
],
"properties": {
"assumeRolePolicyPresent": {
"type": "boolean"
},
"attachedPolicyCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"attachedPolicyNames": {
"type": "array",
"items": {
"type": "string"
}
},
"createDate": {
"type": "string"
},
"description": {
"type": [
"string",
"null"
]
},
"inlinePolicyCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"inlinePolicyNames": {
"type": "array",
"items": {
"type": "string"
}
},
"lastUsedDate": {
"type": [
"string",
"null"
]
},
"lastUsedRegion": {
"type": [
"string",
"null"
]
},
"managedTagCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"maxSessionDuration": {
"type": [
"integer",
"null"
],
"format": "int32"
},
"path": {
"type": "string"
},
"permissionsBoundaryArn": {
"type": [
"string",
"null"
]
},
"permissionsBoundaryType": {
"type": [
"string",
"null"
]
},
"roleArn": {
"type": "string"
},
"roleId": {
"type": "string"
},
"roleName": {
"type": "string"
},
"stackPermissionsApplied": {
"type": "boolean"
},
"status": {
"$ref": "#/components/schemas/ServiceAccountHeartbeatStatus"
},
"tagCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
}
}
}Fields§
§assume_role_policy_present: bool§attached_policy_count: i32§attached_policy_names: Vec<String>§create_date: String§description: Option<String>§inline_policy_count: i32§inline_policy_names: Vec<String>§last_used_date: Option<String>§last_used_region: Option<String>§managed_tag_count: i32§max_session_duration: Option<i32>§path: String§permissions_boundary_arn: Option<String>§permissions_boundary_type: Option<String>§role_arn: String§role_id: String§role_name: String§stack_permissions_applied: bool§status: ServiceAccountHeartbeatStatus§tag_count: i32Implementations§
Trait Implementations§
Source§impl Clone for AwsIamRoleServiceAccountHeartbeatData
impl Clone for AwsIamRoleServiceAccountHeartbeatData
Source§fn clone(&self) -> AwsIamRoleServiceAccountHeartbeatData
fn clone(&self) -> AwsIamRoleServiceAccountHeartbeatData
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 AwsIamRoleServiceAccountHeartbeatData
impl<'de> Deserialize<'de> for AwsIamRoleServiceAccountHeartbeatData
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<&AwsIamRoleServiceAccountHeartbeatData> for AwsIamRoleServiceAccountHeartbeatData
impl From<&AwsIamRoleServiceAccountHeartbeatData> for AwsIamRoleServiceAccountHeartbeatData
Source§fn from(value: &AwsIamRoleServiceAccountHeartbeatData) -> Self
fn from(value: &AwsIamRoleServiceAccountHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AwsIamRoleServiceAccountHeartbeatData> for AwsIamRoleServiceAccountHeartbeatData
impl From<AwsIamRoleServiceAccountHeartbeatData> for AwsIamRoleServiceAccountHeartbeatData
Source§fn from(value: AwsIamRoleServiceAccountHeartbeatData) -> Self
fn from(value: AwsIamRoleServiceAccountHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AwsIamRoleServiceAccountHeartbeatData> for AwsIamRoleServiceAccountHeartbeatData
impl TryFrom<AwsIamRoleServiceAccountHeartbeatData> for AwsIamRoleServiceAccountHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AwsIamRoleServiceAccountHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AwsIamRoleServiceAccountHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AwsIamRoleServiceAccountHeartbeatData
impl RefUnwindSafe for AwsIamRoleServiceAccountHeartbeatData
impl Send for AwsIamRoleServiceAccountHeartbeatData
impl Sync for AwsIamRoleServiceAccountHeartbeatData
impl Unpin for AwsIamRoleServiceAccountHeartbeatData
impl UnsafeUnpin for AwsIamRoleServiceAccountHeartbeatData
impl UnwindSafe for AwsIamRoleServiceAccountHeartbeatData
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