Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.27 KB

File metadata and controls

30 lines (21 loc) · 1.27 KB

Streamsv3ListAWSStreamsResponse

ListAWSStreamsResponse defines response of ListAWSStreamsRequest call.

Properties

Name Type Description Notes
streams_by_region Dict[str, Streamsv3StreamByRegion] Map of streams by regions. [optional]

Example

from ibm_gdsc_sdk_saas.models.streamsv3_list_aws_streams_response import Streamsv3ListAWSStreamsResponse

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

# convert the object into a dict
streamsv3_list_aws_streams_response_dict = streamsv3_list_aws_streams_response_instance.to_dict()
# create an instance of Streamsv3ListAWSStreamsResponse from a dict
streamsv3_list_aws_streams_response_from_dict = Streamsv3ListAWSStreamsResponse.from_dict(streamsv3_list_aws_streams_response_dict)

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