#[non_exhaustive]pub struct CreateProjectInput {
pub project_name: Option<String>,
pub project_description: Option<String>,
pub service_catalog_provisioning_details: Option<ServiceCatalogProvisioningDetails>,
pub tags: Option<Vec<Tag>>,
}
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.project_name: Option<String>
The name of the project.
project_description: Option<String>
A description for the project.
service_catalog_provisioning_details: Option<ServiceCatalogProvisioningDetails>
The product ID and provisioning artifact ID to provision a service catalog. The provisioning artifact ID will default to the latest provisioning artifact ID of the product, if you don't provide the provisioning artifact ID. For more information, see What is Amazon Web Services Service Catalog.
An array of key-value pairs that you want to use to organize and track your Amazon Web Services resource costs. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide.
Implementations§
source§impl CreateProjectInput
impl CreateProjectInput
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&str>
The name of the project.
sourcepub fn project_description(&self) -> Option<&str>
pub fn project_description(&self) -> Option<&str>
A description for the project.
sourcepub fn service_catalog_provisioning_details(
&self
) -> Option<&ServiceCatalogProvisioningDetails>
pub fn service_catalog_provisioning_details( &self ) -> Option<&ServiceCatalogProvisioningDetails>
The product ID and provisioning artifact ID to provision a service catalog. The provisioning artifact ID will default to the latest provisioning artifact ID of the product, if you don't provide the provisioning artifact ID. For more information, see What is Amazon Web Services Service Catalog.
An array of key-value pairs that you want to use to organize and track your Amazon Web Services resource costs. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateProjectInput
impl CreateProjectInput
sourcepub fn builder() -> CreateProjectInputBuilder
pub fn builder() -> CreateProjectInputBuilder
Creates a new builder-style object to manufacture CreateProjectInput
.
Trait Implementations§
source§impl Clone for CreateProjectInput
impl Clone for CreateProjectInput
source§fn clone(&self) -> CreateProjectInput
fn clone(&self) -> CreateProjectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateProjectInput
impl Debug for CreateProjectInput
source§impl PartialEq for CreateProjectInput
impl PartialEq for CreateProjectInput
source§fn eq(&self, other: &CreateProjectInput) -> bool
fn eq(&self, other: &CreateProjectInput) -> bool
self
and other
values to be equal, and is used
by ==
.