#[non_exhaustive]pub struct CreateProjectInput {
pub name: Option<String>,
pub id: Option<String>,
pub description: Option<String>,
pub client_request_token: Option<String>,
pub source_code: Option<Vec<Code>>,
pub toolchain: Option<Toolchain>,
pub tags: Option<HashMap<String, String>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The display name for the project to be created in AWS CodeStar.
id: Option<String>
The ID of the project to be created in AWS CodeStar.
description: Option<String>
The description of the project, if any.
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.
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.
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.
The tags created for the project.
Implementations§
source§impl CreateProjectInput
impl CreateProjectInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The display name for the project to be created in AWS CodeStar.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the project, if any.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A user- or system-generated token that identifies the entity that requested project creation. This token can be used to repeat the request.
sourcepub fn source_code(&self) -> Option<&[Code]>
pub fn source_code(&self) -> Option<&[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.
sourcepub fn toolchain(&self) -> Option<&Toolchain>
pub fn toolchain(&self) -> 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.
The tags created for the project.
source§impl CreateProjectInput
impl CreateProjectInput
sourcepub fn builder() -> CreateProjectInputBuilder
pub fn builder() -> CreateProjectInputBuilder
Creates a new builder-style object to manufacture CreateProjectInput
.
Trait Implementations§
source§impl Clone for CreateProjectInput
impl Clone for CreateProjectInput
source§fn clone(&self) -> CreateProjectInput
fn clone(&self) -> CreateProjectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateProjectInput
impl Debug for CreateProjectInput
source§impl PartialEq<CreateProjectInput> for CreateProjectInput
impl PartialEq<CreateProjectInput> for CreateProjectInput
source§fn eq(&self, other: &CreateProjectInput) -> bool
fn eq(&self, other: &CreateProjectInput) -> bool
self
and other
values to be equal, and is used
by ==
.