DescribeAuditStreamConfigurationResponse.fromJson constructor

DescribeAuditStreamConfigurationResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DescribeAuditStreamConfigurationResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeAuditStreamConfigurationResponse(
    auditStreamArn: json['AuditStreamArn'] as String?,
  );
}