#[non_exhaustive]pub struct UpdateProjectInput {
pub project_name: Option<String>,
pub project_description: Option<String>,
pub service_catalog_provisioning_update_details: Option<ServiceCatalogProvisioningUpdateDetails>,
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>
The description for the project.
service_catalog_provisioning_update_details: Option<ServiceCatalogProvisioningUpdateDetails>
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. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources. In addition, the project must have tag update constraints set in order to include this parameter in the request. For more information, see Amazon Web Services Service Catalog Tag Update Constraints.
Implementations§
source§impl UpdateProjectInput
impl UpdateProjectInput
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>
The description for the project.
sourcepub fn service_catalog_provisioning_update_details(
&self,
) -> Option<&ServiceCatalogProvisioningUpdateDetails>
pub fn service_catalog_provisioning_update_details( &self, ) -> Option<&ServiceCatalogProvisioningUpdateDetails>
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. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources. In addition, the project must have tag update constraints set in order to include this parameter in the request. For more information, see Amazon Web Services Service Catalog Tag Update Constraints.
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 UpdateProjectInput
impl UpdateProjectInput
sourcepub fn builder() -> UpdateProjectInputBuilder
pub fn builder() -> UpdateProjectInputBuilder
Creates a new builder-style object to manufacture UpdateProjectInput
.
Trait Implementations§
source§impl Clone for UpdateProjectInput
impl Clone for UpdateProjectInput
source§fn clone(&self) -> UpdateProjectInput
fn clone(&self) -> UpdateProjectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateProjectInput
impl Debug for UpdateProjectInput
source§impl PartialEq for UpdateProjectInput
impl PartialEq for UpdateProjectInput
source§fn eq(&self, other: &UpdateProjectInput) -> bool
fn eq(&self, other: &UpdateProjectInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateProjectInput
Auto Trait Implementations§
impl Freeze for UpdateProjectInput
impl RefUnwindSafe for UpdateProjectInput
impl Send for UpdateProjectInput
impl Sync for UpdateProjectInput
impl Unpin for UpdateProjectInput
impl UnwindSafe for UpdateProjectInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more