aws_sdk_elasticbeanstalk/client/
delete_platform_version.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 [`DeletePlatformVersion`](crate::operation::delete_platform_version::builders::DeletePlatformVersionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`platform_arn(impl Into<String>)`](crate::operation::delete_platform_version::builders::DeletePlatformVersionFluentBuilder::platform_arn) / [`set_platform_arn(Option<String>)`](crate::operation::delete_platform_version::builders::DeletePlatformVersionFluentBuilder::set_platform_arn):<br>required: **false**<br><p>The ARN of the version of the custom platform.</p><br>
7    /// - On success, responds with [`DeletePlatformVersionOutput`](crate::operation::delete_platform_version::DeletePlatformVersionOutput) with field(s):
8    ///   - [`platform_summary(Option<PlatformSummary>)`](crate::operation::delete_platform_version::DeletePlatformVersionOutput::platform_summary): <p>Detailed information about the version of the custom platform.</p>
9    /// - On failure, responds with [`SdkError<DeletePlatformVersionError>`](crate::operation::delete_platform_version::DeletePlatformVersionError)
10    pub fn delete_platform_version(&self) -> crate::operation::delete_platform_version::builders::DeletePlatformVersionFluentBuilder {
11        crate::operation::delete_platform_version::builders::DeletePlatformVersionFluentBuilder::new(self.handle.clone())
12    }
13}