pub struct CreateProjectRequest {
pub client_request_token: Option<String>,
pub description: Option<String>,
pub id: String,
pub name: String,
pub source_code: Option<Vec<Code>>,
pub tags: Option<HashMap<String, String>>,
pub toolchain: Option<Toolchain>,
}
Fields§
§client_request_token: Option<String>
A user- or system-generated token that identifies the entity that requested project creation. This token can be used to repeat the request.
description: Option<String>
The description of the project, if any.
id: String
The ID of the project to be created in AWS CodeStar.
name: String
The display name for the project to be created in AWS CodeStar.
source_code: Option<Vec<Code>>
A list of the Code objects submitted with the project request. If this parameter is specified, the request must also include the toolchain parameter.
The tags created for the project.
toolchain: Option<Toolchain>
The name of the toolchain template file submitted with the project request. If this parameter is specified, the request must also include the sourceCode parameter.
Trait Implementations§
Source§impl Clone for CreateProjectRequest
impl Clone for CreateProjectRequest
Source§fn clone(&self) -> CreateProjectRequest
fn clone(&self) -> CreateProjectRequest
Returns a copy 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 CreateProjectRequest
impl Debug for CreateProjectRequest
Source§impl Default for CreateProjectRequest
impl Default for CreateProjectRequest
Source§fn default() -> CreateProjectRequest
fn default() -> CreateProjectRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateProjectRequest
impl PartialEq for CreateProjectRequest
Source§impl Serialize for CreateProjectRequest
impl Serialize for CreateProjectRequest
impl StructuralPartialEq for CreateProjectRequest
Auto Trait Implementations§
impl Freeze for CreateProjectRequest
impl RefUnwindSafe for CreateProjectRequest
impl Send for CreateProjectRequest
impl Sync for CreateProjectRequest
impl Unpin for CreateProjectRequest
impl UnwindSafe for CreateProjectRequest
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