Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

File metadata and controls

29 lines (20 loc) · 1 KB

LogStreamAwsPutSchema

Properties

Name Type Description Notes
settings LogStreamSettingsAws

Example

from okta.models.log_stream_aws_put_schema import LogStreamAwsPutSchema

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

# convert the object into a dict
log_stream_aws_put_schema_dict = log_stream_aws_put_schema_instance.to_dict()
# create an instance of LogStreamAwsPutSchema from a dict
log_stream_aws_put_schema_from_dict = LogStreamAwsPutSchema.from_dict(log_stream_aws_put_schema_dict)

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