aws_sdk_observabilityadmin/client/delete_telemetry_rule_for_organization.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteTelemetryRuleForOrganization`](crate::operation::delete_telemetry_rule_for_organization::builders::DeleteTelemetryRuleForOrganizationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`rule_identifier(impl Into<String>)`](crate::operation::delete_telemetry_rule_for_organization::builders::DeleteTelemetryRuleForOrganizationFluentBuilder::rule_identifier) / [`set_rule_identifier(Option<String>)`](crate::operation::delete_telemetry_rule_for_organization::builders::DeleteTelemetryRuleForOrganizationFluentBuilder::set_rule_identifier):<br>required: **true**<br><p>The identifier (name or ARN) of the organization telemetry rule to delete.</p><br>
7 /// - On success, responds with [`DeleteTelemetryRuleForOrganizationOutput`](crate::operation::delete_telemetry_rule_for_organization::DeleteTelemetryRuleForOrganizationOutput)
8 /// - On failure, responds with [`SdkError<DeleteTelemetryRuleForOrganizationError>`](crate::operation::delete_telemetry_rule_for_organization::DeleteTelemetryRuleForOrganizationError)
9 pub fn delete_telemetry_rule_for_organization(
10 &self,
11 ) -> crate::operation::delete_telemetry_rule_for_organization::builders::DeleteTelemetryRuleForOrganizationFluentBuilder {
12 crate::operation::delete_telemetry_rule_for_organization::builders::DeleteTelemetryRuleForOrganizationFluentBuilder::new(self.handle.clone())
13 }
14}