Struct rusoto_inspector::ResourceGroup[][src]

pub struct ResourceGroup {
    pub arn: String,
    pub created_at: f64,
    pub tags: Vec<ResourceGroupTag>,
}

Contains information about a resource group. The resource group defines a set of tags that, when queried, identify the AWS resources that make up the assessment target. This data type is used as the response element in the DescribeResourceGroups action.

Fields

The ARN of the resource group.

The time at which resource group is created.

The tags (key and value pairs) of the resource group. This data type property is used in the CreateResourceGroup action.

Trait Implementations

impl Default for ResourceGroup
[src]

Returns the "default value" for a type. Read more

impl Debug for ResourceGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResourceGroup
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations