Struct aws_sdk_codestar::input::CreateProjectInput
source · [−]#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateProject, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateProject, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateProject
>
Creates a new builder-style object to manufacture CreateProjectInput
The display name for the project to be created in AWS CodeStar.
The description of the project, if any.
A user- or system-generated token that identifies the entity that requested project creation. This token can be used to repeat the request.
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 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateProjectInput
impl Send for CreateProjectInput
impl Sync for CreateProjectInput
impl Unpin for CreateProjectInput
impl UnwindSafe for CreateProjectInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more