aws_sdk_cloudfront/client/get_field_level_encryption_profile_config.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 [`GetFieldLevelEncryptionProfileConfig`](crate::operation::get_field_level_encryption_profile_config::builders::GetFieldLevelEncryptionProfileConfigFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`id(impl Into<String>)`](crate::operation::get_field_level_encryption_profile_config::builders::GetFieldLevelEncryptionProfileConfigFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_field_level_encryption_profile_config::builders::GetFieldLevelEncryptionProfileConfigFluentBuilder::set_id):<br>required: **true**<br><p>Get the ID for the field-level encryption profile configuration information.</p><br>
7 /// - On success, responds with [`GetFieldLevelEncryptionProfileConfigOutput`](crate::operation::get_field_level_encryption_profile_config::GetFieldLevelEncryptionProfileConfigOutput) with field(s):
8 /// - [`field_level_encryption_profile_config(Option<FieldLevelEncryptionProfileConfig>)`](crate::operation::get_field_level_encryption_profile_config::GetFieldLevelEncryptionProfileConfigOutput::field_level_encryption_profile_config): <p>Return the field-level encryption profile configuration information.</p>
9 /// - [`e_tag(Option<String>)`](crate::operation::get_field_level_encryption_profile_config::GetFieldLevelEncryptionProfileConfigOutput::e_tag): <p>The current version of the field-level encryption profile configuration result. For example: <code>E2QWRUHAPOMQZL</code>.</p>
10 /// - On failure, responds with [`SdkError<GetFieldLevelEncryptionProfileConfigError>`](crate::operation::get_field_level_encryption_profile_config::GetFieldLevelEncryptionProfileConfigError)
11 pub fn get_field_level_encryption_profile_config(
12 &self,
13 ) -> crate::operation::get_field_level_encryption_profile_config::builders::GetFieldLevelEncryptionProfileConfigFluentBuilder {
14 crate::operation::get_field_level_encryption_profile_config::builders::GetFieldLevelEncryptionProfileConfigFluentBuilder::new(
15 self.handle.clone(),
16 )
17 }
18}