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§
Source§impl Clone for DescribeProjectResult
impl Clone for DescribeProjectResult
Source§fn clone(&self) -> DescribeProjectResult
fn clone(&self) -> DescribeProjectResult
Returns a duplicate of the value. Read more
1.0.0 · 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 DescribeProjectResult
impl Debug for DescribeProjectResult
Source§impl Default for DescribeProjectResult
impl Default for DescribeProjectResult
Source§fn default() -> DescribeProjectResult
fn default() -> DescribeProjectResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeProjectResult
impl<'de> Deserialize<'de> for DescribeProjectResult
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
Source§impl PartialEq for DescribeProjectResult
impl PartialEq for DescribeProjectResult
impl StructuralPartialEq for DescribeProjectResult
Auto Trait Implementations§
impl Freeze for DescribeProjectResult
impl RefUnwindSafe for DescribeProjectResult
impl Send for DescribeProjectResult
impl Sync for DescribeProjectResult
impl Unpin for DescribeProjectResult
impl UnwindSafe for DescribeProjectResult
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