Struct aws_sdk_mobile::input::CreateProjectInput
source · [−]#[non_exhaustive]pub struct CreateProjectInput {
pub name: Option<String>,
pub region: Option<String>,
pub contents: Option<Blob>,
pub snapshot_id: Option<String>,
}
Expand description
Request structure used to request a project be created.
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>
Name of the project.
region: Option<String>
Default region where project resources should be created.
contents: 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.
snapshot_id: Option<String>
Unique identifier for an exported snapshot of project configuration. This snapshot identifier is included in the share URL when a project is exported.
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
Default region where project resources should be created.
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.
Unique identifier for an exported snapshot of project configuration. This snapshot identifier is included in the share URL when a project is exported.
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