Struct aws_sdk_appconfig::types::builders::AppliedExtensionBuilder
source · #[non_exhaustive]pub struct AppliedExtensionBuilder { /* private fields */ }Expand description
A builder for AppliedExtension.
Implementations§
source§impl AppliedExtensionBuilder
impl AppliedExtensionBuilder
sourcepub fn extension_id(self, input: impl Into<String>) -> Self
pub fn extension_id(self, input: impl Into<String>) -> Self
The system-generated ID of the extension.
sourcepub fn set_extension_id(self, input: Option<String>) -> Self
pub fn set_extension_id(self, input: Option<String>) -> Self
The system-generated ID of the extension.
sourcepub fn get_extension_id(&self) -> &Option<String>
pub fn get_extension_id(&self) -> &Option<String>
The system-generated ID of the extension.
sourcepub fn extension_association_id(self, input: impl Into<String>) -> Self
pub fn extension_association_id(self, input: impl Into<String>) -> Self
The system-generated ID for the association.
sourcepub fn set_extension_association_id(self, input: Option<String>) -> Self
pub fn set_extension_association_id(self, input: Option<String>) -> Self
The system-generated ID for the association.
sourcepub fn get_extension_association_id(&self) -> &Option<String>
pub fn get_extension_association_id(&self) -> &Option<String>
The system-generated ID for the association.
sourcepub fn version_number(self, input: i32) -> Self
pub fn version_number(self, input: i32) -> Self
The extension version number.
sourcepub fn set_version_number(self, input: Option<i32>) -> Self
pub fn set_version_number(self, input: Option<i32>) -> Self
The extension version number.
sourcepub fn get_version_number(&self) -> &Option<i32>
pub fn get_version_number(&self) -> &Option<i32>
The extension version number.
sourcepub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to parameters.
To override the contents of this collection use set_parameters.
One or more parameters for the actions called by the extension.
sourcepub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
One or more parameters for the actions called by the extension.
sourcepub fn get_parameters(&self) -> &Option<HashMap<String, String>>
pub fn get_parameters(&self) -> &Option<HashMap<String, String>>
One or more parameters for the actions called by the extension.
sourcepub fn build(self) -> AppliedExtension
pub fn build(self) -> AppliedExtension
Consumes the builder and constructs a AppliedExtension.
Trait Implementations§
source§impl Clone for AppliedExtensionBuilder
impl Clone for AppliedExtensionBuilder
source§fn clone(&self) -> AppliedExtensionBuilder
fn clone(&self) -> AppliedExtensionBuilder
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 AppliedExtensionBuilder
impl Debug for AppliedExtensionBuilder
source§impl Default for AppliedExtensionBuilder
impl Default for AppliedExtensionBuilder
source§fn default() -> AppliedExtensionBuilder
fn default() -> AppliedExtensionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AppliedExtensionBuilder
impl PartialEq for AppliedExtensionBuilder
source§fn eq(&self, other: &AppliedExtensionBuilder) -> bool
fn eq(&self, other: &AppliedExtensionBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AppliedExtensionBuilder
Auto Trait Implementations§
impl RefUnwindSafe for AppliedExtensionBuilder
impl Send for AppliedExtensionBuilder
impl Sync for AppliedExtensionBuilder
impl Unpin for AppliedExtensionBuilder
impl UnwindSafe for AppliedExtensionBuilder
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>
Creates a shared type from an unshared type.