Trait aws_sdk_alexaforbusiness::config::RuntimePlugin

source ·
pub trait RuntimePlugin: Debug + Send + Sync {
    // Provided methods
    fn order(&self) -> Order { ... }
    fn config(&self) -> Option<FrozenLayer> { ... }
    fn runtime_components(
        &self,
        current_components: &RuntimeComponentsBuilder
    ) -> Cow<'_, RuntimeComponentsBuilder> { ... }
}
Expand description

Runtime plugin trait

A RuntimePlugin is the unit of configuration for augmenting the client with new behavior.

Runtime plugins can register interceptors, set runtime components, and modify configuration.

Provided Methods§

source

fn order(&self) -> Order

Runtime plugin ordering.

There are two runtime plugin “levels” that run in the following order:

  1. Service runtime plugins - runtime plugins that pertain to the entire service.
  2. Operation runtime plugins - runtime plugins relevant only to a single operation.

This function is used to determine runtime plugin order within those levels. So regardless of this Order value, service runtime plugins will still always execute before operation runtime plugins. However, Defaults service runtime plugins will run before Overrides service runtime plugins.

source

fn config(&self) -> Option<FrozenLayer>

Optionally returns additional config that should be added to the ConfigBag.

As a best practice, a frozen layer should be stored on the runtime plugin instance as a member, and then cloned upon return since that clone is cheap. Constructing a new Layer and freezing it will require a lot of allocations.

source

fn runtime_components( &self, current_components: &RuntimeComponentsBuilder ) -> Cow<'_, RuntimeComponentsBuilder>

Returns a RuntimeComponentsBuilder to incorporate into the final runtime components.

The order of runtime plugins determines which runtime components “win”. Components set by later runtime plugins will override those set by earlier runtime plugins.

If no runtime component changes are desired, just return an empty builder.

This method returns a Cow for flexibility. Some implementers may want to store the components builder as a member and return a reference to it, while others may need to create the builder every call. If possible, returning a reference is preferred for performance.

Components configured by previous runtime plugins are in the current_components argument, and can be used to create nested/wrapped components, such as a connector calling into an inner (customer provided) connector.

Implementations on Foreign Types§

source§

impl RuntimePlugin for NoAuthRuntimePlugin

source§

impl RuntimePlugin for EnforceContentLengthRuntimePlugin

source§

impl RuntimePlugin for CannedResponseDeserializer

source§

impl RuntimePlugin for CannedRequestSerializer

Implementors§

source§

impl RuntimePlugin for ApproveSkill

source§

impl RuntimePlugin for AssociateContactWithAddressBook

source§

impl RuntimePlugin for AssociateDeviceWithNetworkProfile

source§

impl RuntimePlugin for AssociateDeviceWithRoom

source§

impl RuntimePlugin for AssociateSkillGroupWithRoom

source§

impl RuntimePlugin for AssociateSkillWithSkillGroup

source§

impl RuntimePlugin for AssociateSkillWithUsers

source§

impl RuntimePlugin for CreateAddressBook

source§

impl RuntimePlugin for CreateBusinessReportSchedule

source§

impl RuntimePlugin for CreateConferenceProvider

source§

impl RuntimePlugin for CreateContact

source§

impl RuntimePlugin for CreateGatewayGroup

source§

impl RuntimePlugin for CreateNetworkProfile

source§

impl RuntimePlugin for CreateProfile

source§

impl RuntimePlugin for CreateRoom

source§

impl RuntimePlugin for CreateSkillGroup

source§

impl RuntimePlugin for CreateUser

source§

impl RuntimePlugin for DeleteAddressBook

source§

impl RuntimePlugin for DeleteBusinessReportSchedule

source§

impl RuntimePlugin for DeleteConferenceProvider

source§

impl RuntimePlugin for DeleteContact

source§

impl RuntimePlugin for DeleteDevice

source§

impl RuntimePlugin for DeleteDeviceUsageData

source§

impl RuntimePlugin for DeleteGatewayGroup

source§

impl RuntimePlugin for DeleteNetworkProfile

source§

impl RuntimePlugin for DeleteProfile

source§

impl RuntimePlugin for DeleteRoom

source§

impl RuntimePlugin for DeleteRoomSkillParameter

source§

impl RuntimePlugin for DeleteSkillAuthorization

source§

impl RuntimePlugin for DeleteSkillGroup

source§

impl RuntimePlugin for DeleteUser

source§

impl RuntimePlugin for DisassociateContactFromAddressBook

source§

impl RuntimePlugin for DisassociateDeviceFromRoom

source§

impl RuntimePlugin for DisassociateSkillFromSkillGroup

source§

impl RuntimePlugin for DisassociateSkillFromUsers

source§

impl RuntimePlugin for DisassociateSkillGroupFromRoom

source§

impl RuntimePlugin for ForgetSmartHomeAppliances

source§

impl RuntimePlugin for GetAddressBook

source§

impl RuntimePlugin for GetConferencePreference

source§

impl RuntimePlugin for GetConferenceProvider

source§

impl RuntimePlugin for GetContact

source§

impl RuntimePlugin for GetDevice

source§

impl RuntimePlugin for GetGateway

source§

impl RuntimePlugin for GetGatewayGroup

source§

impl RuntimePlugin for GetInvitationConfiguration

source§

impl RuntimePlugin for GetNetworkProfile

source§

impl RuntimePlugin for GetProfile

source§

impl RuntimePlugin for GetRoom

source§

impl RuntimePlugin for GetRoomSkillParameter

source§

impl RuntimePlugin for GetSkillGroup

source§

impl RuntimePlugin for ListBusinessReportSchedules

source§

impl RuntimePlugin for ListConferenceProviders

source§

impl RuntimePlugin for ListDeviceEvents

source§

impl RuntimePlugin for ListGatewayGroups

source§

impl RuntimePlugin for ListGateways

source§

impl RuntimePlugin for ListSkills

source§

impl RuntimePlugin for ListSkillsStoreCategories

source§

impl RuntimePlugin for ListSkillsStoreSkillsByCategory

source§

impl RuntimePlugin for ListSmartHomeAppliances

source§

impl RuntimePlugin for ListTags

source§

impl RuntimePlugin for PutConferencePreference

source§

impl RuntimePlugin for PutInvitationConfiguration

source§

impl RuntimePlugin for PutRoomSkillParameter

source§

impl RuntimePlugin for PutSkillAuthorization

source§

impl RuntimePlugin for RegisterAVSDevice

source§

impl RuntimePlugin for RejectSkill

source§

impl RuntimePlugin for ResolveRoom

source§

impl RuntimePlugin for RevokeInvitation

source§

impl RuntimePlugin for SearchAddressBooks

source§

impl RuntimePlugin for SearchContacts

source§

impl RuntimePlugin for SearchDevices

source§

impl RuntimePlugin for SearchNetworkProfiles

source§

impl RuntimePlugin for SearchProfiles

source§

impl RuntimePlugin for SearchRooms

source§

impl RuntimePlugin for SearchSkillGroups

source§

impl RuntimePlugin for SearchUsers

source§

impl RuntimePlugin for SendAnnouncement

source§

impl RuntimePlugin for SendInvitation

source§

impl RuntimePlugin for StartDeviceSync

source§

impl RuntimePlugin for StartSmartHomeApplianceDiscovery

source§

impl RuntimePlugin for TagResource

source§

impl RuntimePlugin for UntagResource

source§

impl RuntimePlugin for UpdateAddressBook

source§

impl RuntimePlugin for UpdateBusinessReportSchedule

source§

impl RuntimePlugin for UpdateConferenceProvider

source§

impl RuntimePlugin for UpdateContact

source§

impl RuntimePlugin for UpdateDevice

source§

impl RuntimePlugin for UpdateGateway

source§

impl RuntimePlugin for UpdateGatewayGroup

source§

impl RuntimePlugin for UpdateNetworkProfile

source§

impl RuntimePlugin for UpdateProfile

source§

impl RuntimePlugin for UpdateRoom

source§

impl RuntimePlugin for UpdateSkillGroup

source§

impl RuntimePlugin for StaticRuntimePlugin

source§

impl RuntimePlugin for SharedRuntimePlugin