Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

File metadata and controls

32 lines (23 loc) · 1.25 KB

LogStreamSettingsAws

Specifies the configuration for the aws_eventbridge Log Stream type. This configuration can't be modified after creation.

Properties

Name Type Description Notes
account_id str Your AWS account ID
event_source_name str An alphanumeric name (no spaces) to identify this event source in AWS EventBridge
region AwsRegion

Example

from okta.models.log_stream_settings_aws import LogStreamSettingsAws

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

# convert the object into a dict
log_stream_settings_aws_dict = log_stream_settings_aws_instance.to_dict()
# create an instance of LogStreamSettingsAws from a dict
log_stream_settings_aws_from_dict = LogStreamSettingsAws.from_dict(log_stream_settings_aws_dict)

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