#[non_exhaustive]pub struct CreateBlueprintInput {
pub name: Option<String>,
pub description: Option<String>,
pub blueprint_location: Option<String>,
pub tags: Option<HashMap<String, String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the blueprint.
description: Option<String>A description of the blueprint.
blueprint_location: Option<String>Specifies a path in Amazon S3 where the blueprint is published.
The tags to be applied to this blueprint.
Implementations§
source§impl CreateBlueprintInput
impl CreateBlueprintInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the blueprint.
sourcepub fn blueprint_location(&self) -> Option<&str>
pub fn blueprint_location(&self) -> Option<&str>
Specifies a path in Amazon S3 where the blueprint is published.
The tags to be applied to this blueprint.
source§impl CreateBlueprintInput
impl CreateBlueprintInput
sourcepub fn builder() -> CreateBlueprintInputBuilder
pub fn builder() -> CreateBlueprintInputBuilder
Creates a new builder-style object to manufacture CreateBlueprintInput.
Trait Implementations§
source§impl Clone for CreateBlueprintInput
impl Clone for CreateBlueprintInput
source§fn clone(&self) -> CreateBlueprintInput
fn clone(&self) -> CreateBlueprintInput
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 CreateBlueprintInput
impl Debug for CreateBlueprintInput
source§impl PartialEq<CreateBlueprintInput> for CreateBlueprintInput
impl PartialEq<CreateBlueprintInput> for CreateBlueprintInput
source§fn eq(&self, other: &CreateBlueprintInput) -> bool
fn eq(&self, other: &CreateBlueprintInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateBlueprintInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateBlueprintInput
impl Send for CreateBlueprintInput
impl Sync for CreateBlueprintInput
impl Unpin for CreateBlueprintInput
impl UnwindSafe for CreateBlueprintInput
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