#[non_exhaustive]pub struct ComponentConfiguration {
pub component_arn: String,
pub parameters: Option<Vec<ComponentParameter>>,
}
Expand description
Configuration details of the component.
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.component_arn: String
The Amazon Resource Name (ARN) of the component.
parameters: Option<Vec<ComponentParameter>>
A group of parameter settings that Image Builder uses to configure the component for a specific recipe.
Implementations§
source§impl ComponentConfiguration
impl ComponentConfiguration
sourcepub fn component_arn(&self) -> &str
pub fn component_arn(&self) -> &str
The Amazon Resource Name (ARN) of the component.
sourcepub fn parameters(&self) -> &[ComponentParameter]
pub fn parameters(&self) -> &[ComponentParameter]
A group of parameter settings that Image Builder uses to configure the component for a specific recipe.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameters.is_none()
.
source§impl ComponentConfiguration
impl ComponentConfiguration
sourcepub fn builder() -> ComponentConfigurationBuilder
pub fn builder() -> ComponentConfigurationBuilder
Creates a new builder-style object to manufacture ComponentConfiguration
.
Trait Implementations§
source§impl Clone for ComponentConfiguration
impl Clone for ComponentConfiguration
source§fn clone(&self) -> ComponentConfiguration
fn clone(&self) -> ComponentConfiguration
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 ComponentConfiguration
impl Debug for ComponentConfiguration
source§impl PartialEq for ComponentConfiguration
impl PartialEq for ComponentConfiguration
source§fn eq(&self, other: &ComponentConfiguration) -> bool
fn eq(&self, other: &ComponentConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ComponentConfiguration
Auto Trait Implementations§
impl Freeze for ComponentConfiguration
impl RefUnwindSafe for ComponentConfiguration
impl Send for ComponentConfiguration
impl Sync for ComponentConfiguration
impl Unpin for ComponentConfiguration
impl UnwindSafe for ComponentConfiguration
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.