[][src]Struct rusoto_codestar::DescribeProjectResult

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>,
    pub status: Option<ProjectStatus>,
}

Fields

arn: Option<String>

The Amazon Resource Name (ARN) for the project.

client_request_token: Option<String>

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

created_time_stamp: Option<f64>

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

description: Option<String>

The description of the project, if any.

id: Option<String>

The ID of the project.

name: Option<String>

The display name for the project.

project_template_id: Option<String>

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

stack_id: Option<String>

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

status: Option<ProjectStatus>

The project creation or deletion status.

Trait Implementations

impl PartialEq<DescribeProjectResult> for DescribeProjectResult[src]

impl Default for DescribeProjectResult[src]

impl Clone for DescribeProjectResult[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeProjectResult[src]

impl<'de> Deserialize<'de> for DescribeProjectResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self