Struct rusoto_inspector::AssessmentTarget[][src]

pub struct AssessmentTarget {
    pub arn: String,
    pub created_at: f64,
    pub name: String,
    pub resource_group_arn: String,
    pub updated_at: f64,
}

Contains information about an Amazon Inspector application. This data type is used as the response element in the DescribeAssessmentTargets action.

Fields

The ARN that specifies the Amazon Inspector assessment target.

The time at which the assessment target is created.

The name of the Amazon Inspector assessment target.

The ARN that specifies the resource group that is associated with the assessment target.

The time at which UpdateAssessmentTarget is called.

Trait Implementations

impl Default for AssessmentTarget
[src]

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

impl Debug for AssessmentTarget
[src]

Formats the value using the given formatter. Read more

impl Clone for AssessmentTarget
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AssessmentTarget
[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