#[non_exhaustive]pub struct CreateProjectInput { /* private fields */ }
Expand description
Request structure used to request a project be created.
Implementations§
source§impl CreateProjectInput
impl CreateProjectInput
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
Default region where project resources should be created.
sourcepub fn contents(&self) -> Option<&Blob>
pub fn contents(&self) -> Option<&Blob>
ZIP or YAML file which contains configuration settings to be used when creating the project. This may be the contents of the file downloaded from the URL provided in an export project operation.
sourcepub fn snapshot_id(&self) -> Option<&str>
pub fn snapshot_id(&self) -> Option<&str>
Unique identifier for an exported snapshot of project configuration. This snapshot identifier is included in the share URL when a project is exported.
source§impl CreateProjectInput
impl CreateProjectInput
sourcepub fn builder() -> CreateProjectInputBuilder
pub fn builder() -> CreateProjectInputBuilder
Creates a new builder-style object to manufacture CreateProjectInput
.
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
>
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 ==
.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§
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