Struct aws_sdk_codestar::input::CreateProjectInput
source · [−]#[non_exhaustive]pub struct CreateProjectInput { /* private fields */ }Implementations
sourceimpl 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.
sourceimpl 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
sourceimpl Clone for CreateProjectInput
impl Clone for CreateProjectInput
sourcefn clone(&self) -> CreateProjectInput
fn clone(&self) -> CreateProjectInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateProjectInput
impl Debug for CreateProjectInput
sourceimpl PartialEq<CreateProjectInput> for CreateProjectInput
impl PartialEq<CreateProjectInput> for CreateProjectInput
sourcefn eq(&self, other: &CreateProjectInput) -> bool
fn eq(&self, other: &CreateProjectInput) -> bool
impl StructuralPartialEq for CreateProjectInput
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more