Struct aws_sdk_imagebuilder::operation::update_distribution_configuration::UpdateDistributionConfigurationInput
source · #[non_exhaustive]pub struct UpdateDistributionConfigurationInput {
pub distribution_configuration_arn: Option<String>,
pub description: Option<String>,
pub distributions: Option<Vec<Distribution>>,
pub client_token: Option<String>,
}
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.distribution_configuration_arn: Option<String>
The Amazon Resource Name (ARN) of the distribution configuration that you want to update.
description: Option<String>
The description of the distribution configuration.
distributions: Option<Vec<Distribution>>
The distributions of the distribution configuration.
client_token: Option<String>
Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.
Implementations§
source§impl UpdateDistributionConfigurationInput
impl UpdateDistributionConfigurationInput
sourcepub fn distribution_configuration_arn(&self) -> Option<&str>
pub fn distribution_configuration_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the distribution configuration that you want to update.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the distribution configuration.
sourcepub fn distributions(&self) -> &[Distribution]
pub fn distributions(&self) -> &[Distribution]
The distributions of the distribution configuration.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .distributions.is_none()
.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.
source§impl UpdateDistributionConfigurationInput
impl UpdateDistributionConfigurationInput
sourcepub fn builder() -> UpdateDistributionConfigurationInputBuilder
pub fn builder() -> UpdateDistributionConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdateDistributionConfigurationInput
.
Trait Implementations§
source§impl Clone for UpdateDistributionConfigurationInput
impl Clone for UpdateDistributionConfigurationInput
source§fn clone(&self) -> UpdateDistributionConfigurationInput
fn clone(&self) -> UpdateDistributionConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateDistributionConfigurationInput
impl PartialEq for UpdateDistributionConfigurationInput
source§fn eq(&self, other: &UpdateDistributionConfigurationInput) -> bool
fn eq(&self, other: &UpdateDistributionConfigurationInput) -> bool
self
and other
values to be equal, and is used
by ==
.