pub struct DynamicSecretCreateRedshift {Show 22 fields
pub creation_statements: Option<String>,
pub custom_username_template: Option<String>,
pub delete_protection: Option<String>,
pub description: Option<String>,
pub item_custom_fields: Option<HashMap<String, String>>,
pub json: Option<bool>,
pub name: String,
pub password_length: Option<String>,
pub producer_encryption_key: Option<String>,
pub redshift_db_name: Option<String>,
pub redshift_host: Option<String>,
pub redshift_password: Option<String>,
pub redshift_port: Option<String>,
pub redshift_username: Option<String>,
pub secure_access_enable: Option<String>,
pub secure_access_host: Option<Vec<String>>,
pub ssl: Option<bool>,
pub tags: Option<Vec<String>>,
pub target_name: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
pub user_ttl: Option<String>,
}Expand description
DynamicSecretCreateRedshift : dynamicSecretCreateRedshift is a command that creates redshift dynamic secret
Fields§
§creation_statements: Option<String>Redshift Creation statements
custom_username_template: Option<String>Customize how temporary usernames are generated using go template
delete_protection: Option<String>Protection from accidental deletion of this object [true/false]
description: Option<String>Description of the object
item_custom_fields: Option<HashMap<String, String>>Additional custom fields to associate with the item
json: Option<bool>Set output format to JSON
name: StringDynamic secret name
password_length: Option<String>The length of the password to be generated
producer_encryption_key: Option<String>Dynamic producer encryption key
redshift_db_name: Option<String>Redshift DB Name
redshift_host: Option<String>Redshift Host
redshift_password: Option<String>Redshift Password
redshift_port: Option<String>Redshift Port
redshift_username: Option<String>Redshift Username
secure_access_enable: Option<String>Enable/Disable secure remote access [true/false]
secure_access_host: Option<Vec<String>>Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts)
ssl: Option<bool>Enable/Disable SSL [true/false]
Add tags attached to this object
target_name: Option<String>Target name
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
user_ttl: Option<String>User TTL
Implementations§
Source§impl DynamicSecretCreateRedshift
impl DynamicSecretCreateRedshift
Sourcepub fn new(name: String) -> DynamicSecretCreateRedshift
pub fn new(name: String) -> DynamicSecretCreateRedshift
dynamicSecretCreateRedshift is a command that creates redshift dynamic secret
Trait Implementations§
Source§impl Clone for DynamicSecretCreateRedshift
impl Clone for DynamicSecretCreateRedshift
Source§fn clone(&self) -> DynamicSecretCreateRedshift
fn clone(&self) -> DynamicSecretCreateRedshift
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DynamicSecretCreateRedshift
impl Debug for DynamicSecretCreateRedshift
Source§impl Default for DynamicSecretCreateRedshift
impl Default for DynamicSecretCreateRedshift
Source§fn default() -> DynamicSecretCreateRedshift
fn default() -> DynamicSecretCreateRedshift
Source§impl<'de> Deserialize<'de> for DynamicSecretCreateRedshift
impl<'de> Deserialize<'de> for DynamicSecretCreateRedshift
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for DynamicSecretCreateRedshift
impl PartialEq for DynamicSecretCreateRedshift
Source§fn eq(&self, other: &DynamicSecretCreateRedshift) -> bool
fn eq(&self, other: &DynamicSecretCreateRedshift) -> bool
self and other values to be equal, and is used by ==.