Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.28 KB

GatewayUpdateLogForwardingAwsS3.md

File metadata and controls

42 lines (33 loc) · 2.28 KB

GatewayUpdateLogForwardingAwsS3

gatewayUpdateLogForwardingAwsS3 is a command that updates log forwarding config (aws-s3 target)

Properties

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]

Example

from akeyless.models.gateway_update_log_forwarding_aws_s3 import GatewayUpdateLogForwardingAwsS3

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

# convert the object into a dict
gateway_update_log_forwarding_aws_s3_dict = gateway_update_log_forwarding_aws_s3_instance.to_dict()
# create an instance of GatewayUpdateLogForwardingAwsS3 from a dict
gateway_update_log_forwarding_aws_s3_from_dict = GatewayUpdateLogForwardingAwsS3.from_dict(gateway_update_log_forwarding_aws_s3_dict)

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