aws_sdk_fsx/operation/delete_snapshot/
_delete_snapshot_input.rs1#[allow(missing_docs)] #[non_exhaustive]
4#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
5pub struct DeleteSnapshotInput {
6 pub client_request_token: ::std::option::Option<::std::string::String>,
8 pub snapshot_id: ::std::option::Option<::std::string::String>,
10}
11impl DeleteSnapshotInput {
12 pub fn client_request_token(&self) -> ::std::option::Option<&str> {
14 self.client_request_token.as_deref()
15 }
16 pub fn snapshot_id(&self) -> ::std::option::Option<&str> {
18 self.snapshot_id.as_deref()
19 }
20}
21impl DeleteSnapshotInput {
22 pub fn builder() -> crate::operation::delete_snapshot::builders::DeleteSnapshotInputBuilder {
24 crate::operation::delete_snapshot::builders::DeleteSnapshotInputBuilder::default()
25 }
26}
27
28#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
30#[non_exhaustive]
31pub struct DeleteSnapshotInputBuilder {
32 pub(crate) client_request_token: ::std::option::Option<::std::string::String>,
33 pub(crate) snapshot_id: ::std::option::Option<::std::string::String>,
34}
35impl DeleteSnapshotInputBuilder {
36 pub fn client_request_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
38 self.client_request_token = ::std::option::Option::Some(input.into());
39 self
40 }
41 pub fn set_client_request_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
43 self.client_request_token = input;
44 self
45 }
46 pub fn get_client_request_token(&self) -> &::std::option::Option<::std::string::String> {
48 &self.client_request_token
49 }
50 pub fn snapshot_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
53 self.snapshot_id = ::std::option::Option::Some(input.into());
54 self
55 }
56 pub fn set_snapshot_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
58 self.snapshot_id = input;
59 self
60 }
61 pub fn get_snapshot_id(&self) -> &::std::option::Option<::std::string::String> {
63 &self.snapshot_id
64 }
65 pub fn build(
67 self,
68 ) -> ::std::result::Result<crate::operation::delete_snapshot::DeleteSnapshotInput, ::aws_smithy_types::error::operation::BuildError> {
69 ::std::result::Result::Ok(crate::operation::delete_snapshot::DeleteSnapshotInput {
70 client_request_token: self.client_request_token,
71 snapshot_id: self.snapshot_id,
72 })
73 }
74}