aws_sdk_verifiedpermissions/client/
update_identity_source.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateIdentitySource`](crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`policy_store_id(impl Into<String>)`](crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder::policy_store_id) / [`set_policy_store_id(Option<String>)`](crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder::set_policy_store_id):<br>required: **true**<br><p>Specifies the ID of the policy store that contains the identity source that you want to update.</p><br>
    ///   - [`identity_source_id(impl Into<String>)`](crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder::identity_source_id) / [`set_identity_source_id(Option<String>)`](crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder::set_identity_source_id):<br>required: **true**<br><p>Specifies the ID of the identity source that you want to update.</p><br>
    ///   - [`update_configuration(UpdateConfiguration)`](crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder::update_configuration) / [`set_update_configuration(Option<UpdateConfiguration>)`](crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder::set_update_configuration):<br>required: **true**<br><p>Specifies the details required to communicate with the identity provider (IdP) associated with this identity source.</p><br>
    ///   - [`principal_entity_type(impl Into<String>)`](crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder::principal_entity_type) / [`set_principal_entity_type(Option<String>)`](crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder::set_principal_entity_type):<br>required: **false**<br><p>Specifies the data type of principals generated for identities authenticated by the identity source.</p><br>
    /// - On success, responds with [`UpdateIdentitySourceOutput`](crate::operation::update_identity_source::UpdateIdentitySourceOutput) with field(s):
    ///   - [`created_date(DateTime)`](crate::operation::update_identity_source::UpdateIdentitySourceOutput::created_date): <p>The date and time that the updated identity source was originally created.</p>
    ///   - [`identity_source_id(String)`](crate::operation::update_identity_source::UpdateIdentitySourceOutput::identity_source_id): <p>The ID of the updated identity source.</p>
    ///   - [`last_updated_date(DateTime)`](crate::operation::update_identity_source::UpdateIdentitySourceOutput::last_updated_date): <p>The date and time that the identity source was most recently updated.</p>
    ///   - [`policy_store_id(String)`](crate::operation::update_identity_source::UpdateIdentitySourceOutput::policy_store_id): <p>The ID of the policy store that contains the updated identity source.</p>
    /// - On failure, responds with [`SdkError<UpdateIdentitySourceError>`](crate::operation::update_identity_source::UpdateIdentitySourceError)
    pub fn update_identity_source(&self) -> crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder {
        crate::operation::update_identity_source::builders::UpdateIdentitySourceFluentBuilder::new(self.handle.clone())
    }
}