1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListFieldLevelEncryptionConfigs`](crate::operation::list_field_level_encryption_configs::builders::ListFieldLevelEncryptionConfigsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`marker(impl Into<String>)`](crate::operation::list_field_level_encryption_configs::builders::ListFieldLevelEncryptionConfigsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::list_field_level_encryption_configs::builders::ListFieldLevelEncryptionConfigsFluentBuilder::set_marker):<br>required: **false**<br><p>Use this when paginating results to indicate where to begin in your list of configurations. The results include configurations in the list that occur after the marker. To get the next page of results, set the <code>Marker</code> to the value of the <code>NextMarker</code> from the current page's response (which is also the ID of the last configuration on that page).</p><br>
    ///   - [`max_items(i32)`](crate::operation::list_field_level_encryption_configs::builders::ListFieldLevelEncryptionConfigsFluentBuilder::max_items) / [`set_max_items(Option<i32>)`](crate::operation::list_field_level_encryption_configs::builders::ListFieldLevelEncryptionConfigsFluentBuilder::set_max_items):<br>required: **false**<br><p>The maximum number of field-level encryption configurations you want in the response body.</p><br>
    /// - On success, responds with [`ListFieldLevelEncryptionConfigsOutput`](crate::operation::list_field_level_encryption_configs::ListFieldLevelEncryptionConfigsOutput) with field(s):
    ///   - [`field_level_encryption_list(Option<FieldLevelEncryptionList>)`](crate::operation::list_field_level_encryption_configs::ListFieldLevelEncryptionConfigsOutput::field_level_encryption_list): <p>Returns a list of all field-level encryption configurations that have been created in CloudFront for this account.</p>
    /// - On failure, responds with [`SdkError<ListFieldLevelEncryptionConfigsError>`](crate::operation::list_field_level_encryption_configs::ListFieldLevelEncryptionConfigsError)
    pub fn list_field_level_encryption_configs(
        &self,
    ) -> crate::operation::list_field_level_encryption_configs::builders::ListFieldLevelEncryptionConfigsFluentBuilder {
        crate::operation::list_field_level_encryption_configs::builders::ListFieldLevelEncryptionConfigsFluentBuilder::new(self.handle.clone())
    }
}