pub struct ResourceGroup {
pub name: String,
pub arn: String,
pub description: Option<String>,
pub query: Option<ResourceQuery>,
pub configuration: Vec<Value>,
pub tags: BTreeMap<String, String>,
pub criticality: Option<i32>,
pub owner: Option<String>,
pub display_name: Option<String>,
pub application_tag: BTreeMap<String, String>,
pub resources: BTreeSet<String>,
pub created_at: DateTime<Utc>,
}Expand description
A resource group. resources holds ARNs explicitly associated via
GroupResources (for configuration/service-linked groups without a query);
query-based groups compute membership from their query.
Fields§
§name: String§arn: String§description: Option<String>§query: Option<ResourceQuery>§configuration: Vec<Value>GroupConfigurationItem list, stored as raw JSON values.
criticality: Option<i32>§owner: Option<String>§display_name: Option<String>§application_tag: BTreeMap<String, String>§resources: BTreeSet<String>ARNs explicitly grouped via GroupResources.
created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for ResourceGroup
impl Clone for ResourceGroup
Source§fn clone(&self) -> ResourceGroup
fn clone(&self) -> ResourceGroup
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 ResourceGroup
impl Debug for ResourceGroup
Source§impl<'de> Deserialize<'de> for ResourceGroup
impl<'de> Deserialize<'de> for ResourceGroup
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
Auto Trait Implementations§
impl Freeze for ResourceGroup
impl RefUnwindSafe for ResourceGroup
impl Send for ResourceGroup
impl Sync for ResourceGroup
impl Unpin for ResourceGroup
impl UnsafeUnpin for ResourceGroup
impl UnwindSafe for ResourceGroup
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