Struct aws_sdk_imagebuilder::operation::create_distribution_configuration::CreateDistributionConfigurationInput
source · #[non_exhaustive]pub struct CreateDistributionConfigurationInput {
pub name: Option<String>,
pub description: Option<String>,
pub distributions: Option<Vec<Distribution>>,
pub tags: Option<HashMap<String, String>>,
pub client_token: Option<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 distribution configuration.
description: Option<String>
The description of the distribution configuration.
distributions: Option<Vec<Distribution>>
The distributions of the distribution configuration.
The tags of the distribution configuration.
client_token: Option<String>
The idempotency token of the distribution configuration.
Implementations§
source§impl CreateDistributionConfigurationInput
impl CreateDistributionConfigurationInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the distribution configuration.
sourcepub fn distributions(&self) -> Option<&[Distribution]>
pub fn distributions(&self) -> Option<&[Distribution]>
The distributions of the distribution configuration.
The tags of the distribution configuration.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
The idempotency token of the distribution configuration.
source§impl CreateDistributionConfigurationInput
impl CreateDistributionConfigurationInput
sourcepub fn builder() -> CreateDistributionConfigurationInputBuilder
pub fn builder() -> CreateDistributionConfigurationInputBuilder
Creates a new builder-style object to manufacture CreateDistributionConfigurationInput
.
Trait Implementations§
source§impl Clone for CreateDistributionConfigurationInput
impl Clone for CreateDistributionConfigurationInput
source§fn clone(&self) -> CreateDistributionConfigurationInput
fn clone(&self) -> CreateDistributionConfigurationInput
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 PartialEq for CreateDistributionConfigurationInput
impl PartialEq for CreateDistributionConfigurationInput
source§fn eq(&self, other: &CreateDistributionConfigurationInput) -> bool
fn eq(&self, other: &CreateDistributionConfigurationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateDistributionConfigurationInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateDistributionConfigurationInput
impl Send for CreateDistributionConfigurationInput
impl Sync for CreateDistributionConfigurationInput
impl Unpin for CreateDistributionConfigurationInput
impl UnwindSafe for CreateDistributionConfigurationInput
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