#[non_exhaustive]pub struct GetServiceSettingInputBuilder { /* private fields */ }
Expand description
A builder for GetServiceSettingInput
.
Implementations§
source§impl GetServiceSettingInputBuilder
impl GetServiceSettingInputBuilder
sourcepub fn setting_id(self, input: impl Into<String>) -> Self
pub fn setting_id(self, input: impl Into<String>) -> Self
The ID of the service setting to get. The setting ID can be one of the following.
-
/ssm/managed-instance/default-ec2-instance-management-role
-
/ssm/automation/customer-script-log-destination
-
/ssm/automation/customer-script-log-group-name
-
/ssm/documents/console/public-sharing-permission
-
/ssm/managed-instance/activation-tier
-
/ssm/opsinsights/opscenter
-
/ssm/parameter-store/default-parameter-tier
-
/ssm/parameter-store/high-throughput-enabled
sourcepub fn set_setting_id(self, input: Option<String>) -> Self
pub fn set_setting_id(self, input: Option<String>) -> Self
The ID of the service setting to get. The setting ID can be one of the following.
-
/ssm/managed-instance/default-ec2-instance-management-role
-
/ssm/automation/customer-script-log-destination
-
/ssm/automation/customer-script-log-group-name
-
/ssm/documents/console/public-sharing-permission
-
/ssm/managed-instance/activation-tier
-
/ssm/opsinsights/opscenter
-
/ssm/parameter-store/default-parameter-tier
-
/ssm/parameter-store/high-throughput-enabled
sourcepub fn get_setting_id(&self) -> &Option<String>
pub fn get_setting_id(&self) -> &Option<String>
The ID of the service setting to get. The setting ID can be one of the following.
-
/ssm/managed-instance/default-ec2-instance-management-role
-
/ssm/automation/customer-script-log-destination
-
/ssm/automation/customer-script-log-group-name
-
/ssm/documents/console/public-sharing-permission
-
/ssm/managed-instance/activation-tier
-
/ssm/opsinsights/opscenter
-
/ssm/parameter-store/default-parameter-tier
-
/ssm/parameter-store/high-throughput-enabled
sourcepub fn build(self) -> Result<GetServiceSettingInput, BuildError>
pub fn build(self) -> Result<GetServiceSettingInput, BuildError>
Consumes the builder and constructs a GetServiceSettingInput
.
source§impl GetServiceSettingInputBuilder
impl GetServiceSettingInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetServiceSettingOutput, SdkError<GetServiceSettingError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetServiceSettingOutput, SdkError<GetServiceSettingError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetServiceSettingInputBuilder
impl Clone for GetServiceSettingInputBuilder
source§fn clone(&self) -> GetServiceSettingInputBuilder
fn clone(&self) -> GetServiceSettingInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetServiceSettingInputBuilder
impl Default for GetServiceSettingInputBuilder
source§fn default() -> GetServiceSettingInputBuilder
fn default() -> GetServiceSettingInputBuilder
source§impl PartialEq for GetServiceSettingInputBuilder
impl PartialEq for GetServiceSettingInputBuilder
source§fn eq(&self, other: &GetServiceSettingInputBuilder) -> bool
fn eq(&self, other: &GetServiceSettingInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetServiceSettingInputBuilder
Auto Trait Implementations§
impl Freeze for GetServiceSettingInputBuilder
impl RefUnwindSafe for GetServiceSettingInputBuilder
impl Send for GetServiceSettingInputBuilder
impl Sync for GetServiceSettingInputBuilder
impl Unpin for GetServiceSettingInputBuilder
impl UnwindSafe for GetServiceSettingInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
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>
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 more