Skip to content

Files

Latest commit

ce5fd4a · Feb 20, 2025

History

History
50 lines (41 loc) · 2.79 KB

DynamicSecretUpdateRedshift.md

File metadata and controls

50 lines (41 loc) · 2.79 KB

DynamicSecretUpdateRedshift

dynamicSecretUpdateRedshift is a command that updates redshift dynamic secret

Properties

Name Type Description Notes
creation_statements str Redshift Creation statements [optional]
delete_protection str Protection from accidental deletion of this object [true/false] [optional]
description str Description of the object [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
new_name str Dynamic secret name [optional]
password_length str The length of the password to be generated [optional]
producer_encryption_key str Dynamic producer encryption key [optional]
redshift_db_name str Redshift DB Name [optional]
redshift_host str Redshift Host [optional] [default to '127.0.0.1']
redshift_password str Redshift Password [optional]
redshift_port str Redshift Port [optional] [default to '5439']
redshift_username str Redshift Username [optional]
secure_access_enable str Enable/Disable secure remote access [true/false] [optional]
secure_access_host List[str] Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts) [optional]
ssl bool Enable/Disable SSL [true/false] [optional] [default to False]
tags List[str] Add tags attached to this object [optional]
target_name str Target name [optional]
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]
user_ttl str User TTL [optional] [default to '60m']

Example

from akeyless.models.dynamic_secret_update_redshift import DynamicSecretUpdateRedshift

# TODO update the JSON string below
json = "{}"
# create an instance of DynamicSecretUpdateRedshift from a JSON string
dynamic_secret_update_redshift_instance = DynamicSecretUpdateRedshift.from_json(json)
# print the JSON string representation of the object
print(DynamicSecretUpdateRedshift.to_json())

# convert the object into a dict
dynamic_secret_update_redshift_dict = dynamic_secret_update_redshift_instance.to_dict()
# create an instance of DynamicSecretUpdateRedshift from a dict
dynamic_secret_update_redshift_from_dict = DynamicSecretUpdateRedshift.from_dict(dynamic_secret_update_redshift_dict)

[Back to Model list] [Back to API list] [Back to README]