toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'arn': ?arn,
    'availabilityZone': ?availabilityZone,
    'ebsOptimized': ?ebsOptimized,
    'endDate': ?endDate,
    'endDateType': ?endDateType,
    'ephemeralStorage': ?ephemeralStorage,
    'instanceCount': ?instanceCount,
    'instanceMatchCriteria': ?instanceMatchCriteria,
    'instancePlatform': ?instancePlatform,
    'instanceType': ?instanceType,
    'outpostArn': ?outpostArn,
    'ownerId': ?ownerId,
    'placementGroupArn': ?placementGroupArn,
    'region': ?region,
    'tags': ?tags,
    'tagsAll': ?tagsAll,
    'tenancy': ?tenancy,
  };
}