#[non_exhaustive]pub struct GetPluginOutputBuilder { /* private fields */ }Expand description
A builder for GetPluginOutput.
Implementations§
source§impl GetPluginOutputBuilder
impl GetPluginOutputBuilder
sourcepub fn application_id(self, input: impl Into<String>) -> Self
pub fn application_id(self, input: impl Into<String>) -> Self
The identifier of the application which contains the plugin.
sourcepub fn set_application_id(self, input: Option<String>) -> Self
pub fn set_application_id(self, input: Option<String>) -> Self
The identifier of the application which contains the plugin.
sourcepub fn get_application_id(&self) -> &Option<String>
pub fn get_application_id(&self) -> &Option<String>
The identifier of the application which contains the plugin.
sourcepub fn set_plugin_id(self, input: Option<String>) -> Self
pub fn set_plugin_id(self, input: Option<String>) -> Self
The identifier of the plugin.
sourcepub fn get_plugin_id(&self) -> &Option<String>
pub fn get_plugin_id(&self) -> &Option<String>
The identifier of the plugin.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The name of the plugin.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The name of the plugin.
sourcepub fn get_display_name(&self) -> &Option<String>
pub fn get_display_name(&self) -> &Option<String>
The name of the plugin.
sourcepub fn type(self, input: PluginType) -> Self
pub fn type(self, input: PluginType) -> Self
The type of the plugin.
sourcepub fn set_type(self, input: Option<PluginType>) -> Self
pub fn set_type(self, input: Option<PluginType>) -> Self
The type of the plugin.
sourcepub fn get_type(&self) -> &Option<PluginType>
pub fn get_type(&self) -> &Option<PluginType>
The type of the plugin.
sourcepub fn server_url(self, input: impl Into<String>) -> Self
pub fn server_url(self, input: impl Into<String>) -> Self
The source URL used for plugin configuration.
sourcepub fn set_server_url(self, input: Option<String>) -> Self
pub fn set_server_url(self, input: Option<String>) -> Self
The source URL used for plugin configuration.
sourcepub fn get_server_url(&self) -> &Option<String>
pub fn get_server_url(&self) -> &Option<String>
The source URL used for plugin configuration.
sourcepub fn auth_configuration(self, input: PluginAuthConfiguration) -> Self
pub fn auth_configuration(self, input: PluginAuthConfiguration) -> Self
Authentication configuration information for an Amazon Q plugin.
sourcepub fn set_auth_configuration(
self,
input: Option<PluginAuthConfiguration>
) -> Self
pub fn set_auth_configuration( self, input: Option<PluginAuthConfiguration> ) -> Self
Authentication configuration information for an Amazon Q plugin.
sourcepub fn get_auth_configuration(&self) -> &Option<PluginAuthConfiguration>
pub fn get_auth_configuration(&self) -> &Option<PluginAuthConfiguration>
Authentication configuration information for an Amazon Q plugin.
sourcepub fn plugin_arn(self, input: impl Into<String>) -> Self
pub fn plugin_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the role with permission to access resources needed to create the plugin.
sourcepub fn set_plugin_arn(self, input: Option<String>) -> Self
pub fn set_plugin_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the role with permission to access resources needed to create the plugin.
sourcepub fn get_plugin_arn(&self) -> &Option<String>
pub fn get_plugin_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the role with permission to access resources needed to create the plugin.
sourcepub fn state(self, input: PluginState) -> Self
pub fn state(self, input: PluginState) -> Self
The current state of the plugin.
sourcepub fn set_state(self, input: Option<PluginState>) -> Self
pub fn set_state(self, input: Option<PluginState>) -> Self
The current state of the plugin.
sourcepub fn get_state(&self) -> &Option<PluginState>
pub fn get_state(&self) -> &Option<PluginState>
The current state of the plugin.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The timestamp for when the plugin was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The timestamp for when the plugin was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The timestamp for when the plugin was created.
sourcepub fn updated_at(self, input: DateTime) -> Self
pub fn updated_at(self, input: DateTime) -> Self
The timestamp for when the plugin was last updated.
sourcepub fn set_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_updated_at(self, input: Option<DateTime>) -> Self
The timestamp for when the plugin was last updated.
sourcepub fn get_updated_at(&self) -> &Option<DateTime>
pub fn get_updated_at(&self) -> &Option<DateTime>
The timestamp for when the plugin was last updated.
sourcepub fn build(self) -> GetPluginOutput
pub fn build(self) -> GetPluginOutput
Consumes the builder and constructs a GetPluginOutput.
Trait Implementations§
source§impl Clone for GetPluginOutputBuilder
impl Clone for GetPluginOutputBuilder
source§fn clone(&self) -> GetPluginOutputBuilder
fn clone(&self) -> GetPluginOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetPluginOutputBuilder
impl Debug for GetPluginOutputBuilder
source§impl Default for GetPluginOutputBuilder
impl Default for GetPluginOutputBuilder
source§fn default() -> GetPluginOutputBuilder
fn default() -> GetPluginOutputBuilder
source§impl PartialEq for GetPluginOutputBuilder
impl PartialEq for GetPluginOutputBuilder
source§fn eq(&self, other: &GetPluginOutputBuilder) -> bool
fn eq(&self, other: &GetPluginOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.