Struct aws_sdk_ssm::input::update_service_setting_input::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateServiceSettingInput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn setting_id(self, input: impl Into<String>) -> Self
pub fn setting_id(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the service setting to reset. For example, arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled
. The setting ID can be one of the following.
-
/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 Amazon Resource Name (ARN) of the service setting to reset. For example, arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled
. The setting ID can be one of the following.
-
/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 setting_value(self, input: impl Into<String>) -> Self
pub fn setting_value(self, input: impl Into<String>) -> Self
The new value to specify for the service setting. The following list specifies the available values for each setting.
-
/ssm/automation/customer-script-log-destination
:CloudWatch
-
/ssm/automation/customer-script-log-group-name
: the name of an Amazon CloudWatch Logs log group -
/ssm/documents/console/public-sharing-permission
:Enable
orDisable
-
/ssm/managed-instance/activation-tier
:standard
oradvanced
-
/ssm/opsinsights/opscenter
:Enabled
orDisabled
-
/ssm/parameter-store/default-parameter-tier
:Standard
,Advanced
,Intelligent-Tiering
-
/ssm/parameter-store/high-throughput-enabled
:true
orfalse
sourcepub fn set_setting_value(self, input: Option<String>) -> Self
pub fn set_setting_value(self, input: Option<String>) -> Self
The new value to specify for the service setting. The following list specifies the available values for each setting.
-
/ssm/automation/customer-script-log-destination
:CloudWatch
-
/ssm/automation/customer-script-log-group-name
: the name of an Amazon CloudWatch Logs log group -
/ssm/documents/console/public-sharing-permission
:Enable
orDisable
-
/ssm/managed-instance/activation-tier
:standard
oradvanced
-
/ssm/opsinsights/opscenter
:Enabled
orDisabled
-
/ssm/parameter-store/default-parameter-tier
:Standard
,Advanced
,Intelligent-Tiering
-
/ssm/parameter-store/high-throughput-enabled
:true
orfalse
sourcepub fn build(self) -> Result<UpdateServiceSettingInput, BuildError>
pub fn build(self) -> Result<UpdateServiceSettingInput, BuildError>
Consumes the builder and constructs a UpdateServiceSettingInput
.