gwUpdateRemoteAccessSessionLogsAwsS3 is a command that updates session log forwarding config (aws-s3 target)
Name | Type | Description | Notes |
---|---|---|---|
access_id | str | AWS access id relevant for access_key auth-type | [optional] |
access_key | str | AWS access key relevant for access_key auth-type | [optional] |
auth_type | str | AWS auth type [access_key/cloud_id/assume_role] | [optional] |
bucket_name | str | AWS S3 bucket name | [optional] |
enable | str | Enable Log Forwarding [true/false] | [optional] [default to 'true'] |
var_json | bool | Set output format to JSON | [optional] [default to False] |
log_folder | str | AWS S3 destination folder for logs | [optional] [default to 'use-existing'] |
output_format | str | Logs format [text/json] | [optional] [default to 'text'] |
pull_interval | str | Pull interval in seconds | [optional] [default to '10'] |
region | str | AWS region | [optional] |
role_arn | str | AWS role arn relevant for assume_role auth-type | [optional] |
token | str | Authentication token (see `/auth` and `/configure`) | [optional] |
uid_token | str | The universal identity token, Required only for universal_identity authentication | [optional] |
from akeyless.models.gw_update_remote_access_session_logs_aws_s3 import GwUpdateRemoteAccessSessionLogsAwsS3
# TODO update the JSON string below
json = "{}"
# create an instance of GwUpdateRemoteAccessSessionLogsAwsS3 from a JSON string
gw_update_remote_access_session_logs_aws_s3_instance = GwUpdateRemoteAccessSessionLogsAwsS3.from_json(json)
# print the JSON string representation of the object
print(GwUpdateRemoteAccessSessionLogsAwsS3.to_json())
# convert the object into a dict
gw_update_remote_access_session_logs_aws_s3_dict = gw_update_remote_access_session_logs_aws_s3_instance.to_dict()
# create an instance of GwUpdateRemoteAccessSessionLogsAwsS3 from a dict
gw_update_remote_access_session_logs_aws_s3_from_dict = GwUpdateRemoteAccessSessionLogsAwsS3.from_dict(gw_update_remote_access_session_logs_aws_s3_dict)