Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.55 KB

TargetCreateAws.md

File metadata and controls

40 lines (34 loc) · 1.55 KB

Akeyless::TargetCreateAws

Properties

Name Type Description Notes
access_key String AWS secret access key
access_key_id String AWS access key ID
description String Description of the object [optional]
json Boolean Set output format to JSON [optional][default to false]
key String The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used) [optional]
max_versions String Set the maximum number of versions, limited by the account settings defaults. [optional]
name String Target name
region String AWS region [optional][default to 'us-east-2']
session_token String Required only for temporary security credentials retrieved using STS [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]
use_gw_cloud_identity Boolean Use the GW's Cloud IAM [optional]

Example

require 'akeyless'

instance = Akeyless::TargetCreateAws.new(
  access_key: null,
  access_key_id: null,
  description: null,
  json: null,
  key: null,
  max_versions: null,
  name: null,
  region: null,
  session_token: null,
  token: null,
  uid_token: null,
  use_gw_cloud_identity: null
)