Struct aws_sdk_codestar::input::CreateProjectInput
source · #[non_exhaustive]pub struct CreateProjectInput { /* private fields */ }
Implementations§
source§impl CreateProjectInput
impl CreateProjectInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateProject, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateProject, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateProject
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateProjectInput
.
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.
Trait Implementations§
source§impl Clone for CreateProjectInput
impl Clone for CreateProjectInput
source§fn clone(&self) -> CreateProjectInput
fn clone(&self) -> CreateProjectInput
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 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
This method tests for
self
and other
values to be equal, and is used
by ==
.