pub struct RotatedSecretCreateAws {Show 31 fields
pub api_id: Option<String>,
pub api_key: Option<String>,
pub authentication_credentials: Option<String>,
pub auto_rotate: Option<String>,
pub aws_region: Option<String>,
pub delete_protection: Option<String>,
pub description: Option<String>,
pub grace_rotation: Option<String>,
pub grace_rotation_hour: Option<i32>,
pub grace_rotation_interval: Option<String>,
pub grace_rotation_timing: Option<String>,
pub item_custom_fields: Option<HashMap<String, String>>,
pub json: Option<bool>,
pub key: Option<String>,
pub max_versions: Option<String>,
pub name: String,
pub password_length: Option<String>,
pub rotate_after_disconnect: Option<String>,
pub rotation_event_in: Option<Vec<String>>,
pub rotation_hour: Option<i32>,
pub rotation_interval: Option<String>,
pub rotator_type: String,
pub secure_access_aws_account_id: Option<String>,
pub secure_access_aws_native_cli: Option<bool>,
pub secure_access_bastion_issuer: Option<String>,
pub secure_access_certificate_issuer: Option<String>,
pub secure_access_enable: Option<String>,
pub tags: Option<Vec<String>>,
pub target_name: String,
pub token: Option<String>,
pub uid_token: Option<String>,
}Fields§
§api_id: Option<String>API ID to rotate (relevant only for rotator-type=api-key)
api_key: Option<String>API key to rotate (relevant only for rotator-type=api-key)
authentication_credentials: Option<String>The credentials to connect with use-user-creds/use-target-creds
auto_rotate: Option<String>Whether to automatically rotate every –rotation-interval days, or disable existing automatic rotation [true/false]
aws_region: Option<String>Aws Region
delete_protection: Option<String>Protection from accidental deletion of this object [true/false]
description: Option<String>Description of the object
grace_rotation: Option<String>Enable graceful rotation (keep both versions temporarily). When enabled, a new secret version is created while the previous version is kept for the grace period, so both versions exist for a limited time. [true/false]
grace_rotation_hour: Option<i32>The Hour of the grace rotation in UTC
grace_rotation_interval: Option<String>The number of days to wait before deleting the old key (must be bigger than rotation-interval)
grace_rotation_timing: Option<String>When to create the new version relative to the rotation date [after/before]
item_custom_fields: Option<HashMap<String, String>>Additional custom fields to associate with the item
json: Option<bool>Set output format to JSON
key: Option<String>The name of a key that used to encrypt the secret value (if empty, the account default protectionKey key will be used)
max_versions: Option<String>Set the maximum number of versions, limited by the account settings defaults.
name: StringRotated secret name
password_length: Option<String>The length of the password to be generated
rotate_after_disconnect: Option<String>Rotate the value of the secret after SRA session ends [true/false]
rotation_event_in: Option<Vec<String>>How many days before the rotation of the item would you like to be notified
rotation_hour: Option<i32>The Hour of the rotation in UTC
rotation_interval: Option<String>The number of days to wait between every automatic key rotation (1-365)
rotator_type: StringThe rotator type. options: [target/api-key]
secure_access_aws_account_id: Option<String>The AWS account id
secure_access_aws_native_cli: Option<bool>The AWS native cli
secure_access_bastion_issuer: Option<String>Deprecated. use secure-access-certificate-issuer
secure_access_certificate_issuer: Option<String>Path to the SSH Certificate Issuer for your Akeyless Secure Access
secure_access_enable: Option<String>Enable/Disable secure remote access [true/false]
Add tags attached to this object
target_name: StringThe target name to associate
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Trait Implementations§
Source§impl Clone for RotatedSecretCreateAws
impl Clone for RotatedSecretCreateAws
Source§fn clone(&self) -> RotatedSecretCreateAws
fn clone(&self) -> RotatedSecretCreateAws
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 RotatedSecretCreateAws
impl Debug for RotatedSecretCreateAws
Source§impl Default for RotatedSecretCreateAws
impl Default for RotatedSecretCreateAws
Source§fn default() -> RotatedSecretCreateAws
fn default() -> RotatedSecretCreateAws
Source§impl<'de> Deserialize<'de> for RotatedSecretCreateAws
impl<'de> Deserialize<'de> for RotatedSecretCreateAws
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 RotatedSecretCreateAws
impl PartialEq for RotatedSecretCreateAws
Source§fn eq(&self, other: &RotatedSecretCreateAws) -> bool
fn eq(&self, other: &RotatedSecretCreateAws) -> bool
self and other values to be equal, and is used by ==.