AwsEc2VolumeAttachment.fromJson constructor

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

Implementation

factory AwsEc2VolumeAttachment.fromJson(Map<String, dynamic> json) {
  return AwsEc2VolumeAttachment(
    attachTime: json['AttachTime'] as String?,
    deleteOnTermination: json['DeleteOnTermination'] as bool?,
    instanceId: json['InstanceId'] as String?,
    status: json['Status'] as String?,
  );
}