Struct rusoto_codestar::DescribeProjectResult[][src]

pub struct DescribeProjectResult {
    pub arn: Option<String>,
    pub client_request_token: Option<String>,
    pub created_time_stamp: Option<f64>,
    pub description: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub project_template_id: Option<String>,
    pub stack_id: Option<String>,
}

Fields

The Amazon Resource Name (ARN) for the project.

A user- or system-generated token that identifies the entity that requested project creation.

The date and time the project was created, in timestamp format.

The description of the project, if any.

The ID of the project.

The display name for the project.

The ID for the AWS CodeStar project template used to create the project.

The ID of the primary stack in AWS CloudFormation used to generate resources for the project.

Trait Implementations

impl Default for DescribeProjectResult
[src]

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

impl Debug for DescribeProjectResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeProjectResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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